-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.09 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.09 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="./src/assets/vaco_symbol.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vaco Messenger</title>
<link rel="stylesheet" href="./src/styles/reset.css" />
<link rel="stylesheet" href="./src/styles/index.css" />
<script defer type="module" src="./src/js/app.js"></script>
</head>
<body>
<img id="vaco" src="./src/assets/vaco.png" />
<main>
<section class="signin">
<form>
<input type="text" placeholder="닉네임을 입력해주세요." />
<img src="./src/assets/enter.png" />
</form>
</section>
<section class="chat transparent">
<div class="messages">
</div>
<form class="message-input">
<input placeholder="메시지를 입력해주세요." />
<button>
<img src="./src/assets/send.png" />
</button>
</form>
</section>
</main>
<div class="overlay transparent"></div>
</body>
</html>