forked from TheCloudWorldAdmin/codedeploy-to-ec2-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (23 loc) · 738 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TCW Chat Application</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<section class="chat__section">
<div class="brand">
<img height="100" src="/WaterMark.png" alt="">
<h1>The Cloud World (v0.2).. 😃 😃</h1>
</div>
<div class="message__area"></div>
<div>
<textarea id="textarea" cols="50" rows="1" placeholder="Type here..."></textarea>
</div>
</section>
<script src="/socket.io/socket.io.js"></script>
<script src="/client.js"></script>
</body>
</html>