-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (38 loc) · 1.42 KB
/
index.html
File metadata and controls
38 lines (38 loc) · 1.42 KB
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
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<title>Connect Four</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="output.css" rel="stylesheet">
</head>
<body>
<!-- <div class="pl-2 " id="instructions">
<div id="menu">
<p class="welcome">Instructions, <b></b></p>
</div>
</div> -->
<div class="flex flex-nowrap gap-16">
<div class="board">
<div>
<div class="actions mt-2">
<a class="action join" href="#">Join</a>
<a class="action watch" href="#">Watch</a>
</div>
</div>
</div>
<div id="wrapper">
<div id="menu">
<p class="welcome">Welcome to the Chat Area, <b></b></p>
<!-- <p class="logout"><a id="exit" href="#">Exit Chat</a></p> -->
</div>
<div id="chatbox"></div>
<form id="chat-form">
<input type="text" id="chat-input" placeholder="Enter message here">
<button type="submit" id="chat-button">Send</button>
</form>
</div>
</div>
<script src="main.js" type="module"></script>
</body>
</html>