-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (49 loc) · 1.86 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;500;900&display=swap" rel="stylesheet">
<title>Twittler</title>
</head>
<body>
<div class="header">
<h1>twittler</h1>
</div>
<div class="form_container">
<form action="get">
<label for="user_name">User Name</label>
<input type="text" id="user__name--input" name="user_name" placeholder="이름을 입력해주세요">
<label for="comment">Comment</label>
<textarea type="text" id="comment--input" name="comment" placeholder="무슨 일이 일어나고 있나요?">
</textarea>
<input type="submit" value="tweet!" id="btn__submit" class="btn">
</form>
</div>
<div class="twit--container">
<div class="ckeck__btn--container">
<button class="btn">check new tweet</button>
</div>
<div class="twitt__view--container">
<ul class="twitt__view--list">
<li class="twitt__item">
<p class="twitt__info">
<span class="twitt__name">user name</span>
<span class="twitt__date">2019-01-03</span>
<span class="twitt__time">12:30:20</span>
</p>
<p class="twitt__text">
welcome to code states <span class="tag">#codestates</span>
</p>
</li>
</ul>
</div>
</div>
<div class="bg--container">
<div class="bg-lighter"></div>
</div>
</body>
<script src="main.js"></script>
</html>