-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathchatroom.html
More file actions
33 lines (32 loc) · 880 Bytes
/
chatroom.html
File metadata and controls
33 lines (32 loc) · 880 Bytes
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
<!doctype html>
<html>
<head>
<title>
Games
</title>
<base target="_blank">
<script src="https://epicenterprograms.github.io/standards/behavior/general.js"></script>
<script src="https://epicenterprograms.github.io/standards/behavior/storage.js"></script>
<script src="https://epicenterprograms.github.io/standards/behavior/game.js"></script>
<script src="behavior.js"></script>
<script>
if (loggedIn) {
}
</script>
<link rel="stylesheet" href="https://epicenterprograms.github.io/standards/formatting/foundation.css">
<link rel="stylesheet" href="https://epicenterprograms.github.io/standards/formatting/game.css">
</head>
<body>
<nav class="hidden-left-nav">
<iframe src="navigation.html"></iframe>
</nav>
<h1 class="main-title">
Chatroom
</h1>
<main>
<p>
This will allow you to chat.
</p>
</main>
</body>
</html>