-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
60 lines (53 loc) · 2.76 KB
/
test.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Test App</title>
<link rel="stylesheet" href="sp://import/css/adam.css">
<link rel="stylesheet" href="app.css">
<script src="jquery-1.5.2.min.js"></script>
</head>
<body>
<div id="background"><div id="darkener"></div></div>
<div id="chatroom">
<div id="chat">
<div class="message"><span class="them">Ubervero</span> - I wrote some text here!</div>
<div class="message"><span class="me">Pents90</span> - I responded!</div>
<div class="message"><span class="them">Megamattron</span> - I did too.</div>
<div class="message"><span class="them">Ubervero</span> - I wrote some text here!</div>
<div class="message"><span class="me">Pents90</span> - I responded!</div>
<div class="message"><span class="them">Megamattron</span> - I did too.</div>
<div class="message"><span class="them">Ubervero</span> - I wrote some text here!</div>
<div class="message"><span class="me">Pents90</span> - I responded!</div>
<div class="message"><span class="them">Megamattron</span> - I did too.</div>
<div class="message"><span class="them">Ubervero</span> - I wrote some text here!</div>
<div class="message"><span class="me">Pents90</span> - I responded!</div>
<div class="message"><span class="them">Megamattron</span> - I did too.</div>
<div class="message"><span class="them">Ubervero</span> - I wrote some text here!</div>
<div class="message"><span class="me">Pents90</span> - I responded!</div>
<div class="message"><span class="them">Megamattron</span> - I did too.</div>
<div class="message"><span class="them">Ubervero</span> - I wrote some text here, a very long line that will have to be tested...</div>
<div class="message"><span class="me">Pents90</span> - I responded!</div>
<div class="message"><span class="them">Megamattron</span> - I did too.</div>
<div class="message"><span class="them">Ubervero</span> - I wrote some text here!</div>
<div class="message"><span class="me">Pents90</span> - I responded!</div>
<div class="message"><span class="them">Megamattron</span> - I did too.</div>
<div class="message"><span class="them">Ubervero</span> - I wrote some text here!</div>
<div class="message"><span class="me">Pents90</span> - I responded!</div>
<div class="message"><span class="them">Megamattron</span> - LAST LINE HERE Y'ALL!.</div>
</div>
<div id="sidebar">
<h1 id="roomname">Four Tet</h1>
<ul id="userlist">
<li>Ubervero</li>
<li class="me">Pents90</li>
<li>Megamattron</li>
</ul>
</div>
<div id="controls">
<input class="input" type="text" id="text">
<input class="button" type="button" id="send" value="Send">
</div>
</div>
</body>
</html>