-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
37 lines (33 loc) · 1 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
33
34
35
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<style>
body {
background-image: url('pexels-karolina-grabowska-7193576.jpg');
background-repeat: no-repeat;
background-size: cover;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<script>
document.documentElement.style.zoom = "90%";
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Taco Chat</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<section class="chat__section">
<div class="brand">
<h1>Just talk!</h1>
</div>
<div class="message__area"></div>
<div>
<textarea id="textarea" cols="30" rows="1" placeholder="Write a message..."></textarea>
</div>
</section>
<script src="/socket.io/socket.io.js"></script>
<script src="/client.js"></script>
</body>
</html>