-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.html
executable file
·24 lines (23 loc) · 938 Bytes
/
chat.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Chat | Hoxie Ave</title>
<!-- The style.css file allows you to change the look of your web pages.
If you include the next line in all your web pages, they will all share the same look.
This makes it easier to make new pages for your site. -->
<link href="/css/style.css" rel="stylesheet" type="text/css" media="all">
</head>
<body>
<nav>
<div id="nav-container">
<div><a href="/">Home</a></div>
<div><a href="/chat.html">Hoxie Chat</a></div>
<div><a href="/events.html">Events</a></div>
<div><a href="/weather.html">Weather</a></div>
</div>
</nav>
<h1>Hoxie Chat</h1>
<div id="tlkio" data-channel="hoxie" data-theme="//hoxie.neocities.org/css/chat.css" style="width: 100%; height: 700px;"></div><script src="//tlk.io/embed.js" type="text/javascript"></script>
</body>
</html>