-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (34 loc) · 996 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
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>채팅</title>
<script src="https://cdn.socket.io/4.7.5/socket.io.min.js" integrity="sha384-2huaZvOR9iDzHqslqwpR87isEmrfxqyWOF7hr7BY6KG0+hVKLoEXMPUJw3ynWuhO" crossorigin="anonymous"></script>
<script src="./public/app.js"></script>
<link rel="stylesheet" href="./public/style.css" />
</head>
<body>
<div class="main">
<div class="phone">
<div class="title">
<h4>공개채팅</h4>
<div class="userCnt">
현재<span>0</span>명이 서버에 접속해있습니다.
</div>
</div>
<div class="chat"></div>
<form class="bottom">
<div>
<input
type="text"
id="message"
autofocus
placeholder="메시지를 입력해주세요."
/>
<button>전송</button>
</div>
</form>
</div>
</div>
</body>
</html>