-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
35 lines (34 loc) · 1.24 KB
/
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
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>youtube streaming</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
rel="stylesheet"
type="text/css"
media="screen"
href="style/screen.css"
/>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/2.3.0/socket.io.js"
integrity="sha256-bQmrZe4yPnQrLTY+1gYylfNMBuGfnT/HKsCGX+9Xuqo="
crossorigin="anonymous"
></script>
<script src="script/dataHandler.js"></script>
<script src="script/index.js"></script>
</head>
<body>
<div class="input-container">
<input type="text" name="lobbyIdInputField" id="lobbyIdInputField" placeholder="">
<div class="buttons">
<button id="btn-create" class="c-button c-button--index">Create Party</button>
<button id="btn-join" class="c-button c-button--index">Join Party</button>
</div>
<div class="gif">
<img src="img/party.gif" alt="GIF of a party">
</div>
</div>
</body>
</html>