-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
42 lines (42 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css">
</head>
<body>
<div id = "header">Twittler</div>
<form>
<div>
<label for="userName">UserName</label>
</div>
<div>
<input type="text" id="input-username" name="userName">
</div>
<div>
<label for="comment">Comment</label>
</div>
<div>
<textarea></textarea>
</div>
<div>
<input type="submit" value="tweet!">
</div>
</form>
<div class="tweet-container">
<div class ="checkBtn-container">
<button>check new Tweet</button>
</div>
<ul>
<li>
<span class="tweet-username">이름</span>
<span class="tweet-date">년 - 월 - 일</span>
<span class="tweet-time">시간 : 분 : 초</span>
<p class="tweet=content">트윗 내용</p>
</li>
</ul>
</div>
</body>
</html>