-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 946 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Picture in Picture</title>
<link rel="icon" type="image/png" href="https://avatars.githubusercontent.com/u/97390468?s=400&u=76b1b589f6a33011bba11c89aaa013142066bffe&v=4">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="navbar">
<div id="pip-action" class="pip-action unselectable">
<i class="fa-regular fa-images"></i>
<span>Picture in Picture</span>
</div>
</div>
<!-- Video -->
<video id="video" controls height="360" width="640" hidden></video>
<!-- Button -->
<div class="button-container">
<button id="button" class="start-button">START</button>
</div>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>