-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
32 lines (26 loc) · 1.08 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Petri chat</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/common.css" media="screen" charset="utf-8">
</head>
<body>
<section class="chat-window">
<!-- <span class="msg from-them">
It's pretty cool! It's pretty cool!It's pretty cool!It's pretty cool!It's pretty cool!It's pretty cool!It's pretty cool!It's pretty cool!It's pretty cool!
</span>
<span class="msg from-me">
Yeah it's pure CSS & HTML
</span> -->
</section>
<section class="chat-tools">
<input class="chat-input" placeholder="iMessage"/>
<button class="chat-send">Send</button>
</section>
<script src="https://code.jquery.com/jquery-2.2.3.min.js" integrity="sha256-a23g1Nt4dtEYOj7bR+vTu7+T8VP13humZFBJNIYoEJo=" crossorigin="anonymous"></script>
<script src="/js/app.js" type="text/javascript"></script>
<script src="https://cdn.firebase.com/js/client/2.2.1/firebase.js"></script>
</body>
</html>