-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
32 lines (23 loc) · 1 KB
/
index.php
File metadata and controls
32 lines (23 loc) · 1 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
<!DOCTYPE html> <!-- I don't REALLY know what this does but every html page needs one -->
<html lang="en">
<head> <!-- Info, title, links to other resources (other files), etc, go here-->
<title>An awesome chat!</title>
<link rel="stylesheet" type="text/css" href="style.css"> <!-- link to a css file, so we can design stuff :) -->
<meta charset="UTF-8"> <!-- specify the character encoding-->
</head>
<body>
<nav>
<ul> <!-- unordered list -->
<li>Home</li> <!-- list item -->
<li>Chat</li>
<li>Rules</li>
<li>Sign in</li>
</ul>
</nav>
<div class="chat-wrapper"> <!-- division, or section, used for the layout -->
<div class="messages"> <!-- messages will be posted here -->
</div>
<input type="text" class="msg">
</div>
</body>
</html>