-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
55 lines (50 loc) · 1.91 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="style.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=".../" method="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" id="btn__new-tweet">check new tweet</button>
<button class="btn" id="btn__view-all">view all</button>
</div>
<div class="twitt__view--container">
<ul class="twitt__view--list">
<template id="new__twitt">
<li class="twitt__item">
<p class="twitt__info">
<span id="twitt__name"></span>
<span id="twitt__date"></span>
</p>
<p id="twitt__text">
</p>
</li>
</template>
</ul>
</div>
</div>
<div class="bg--container">
<div class="bg-lighter"></div>
</div>
</body>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.27.0/moment-with-locales.min.js" integrity="sha512-qSnlnyh7EcD3vTqRoSP4LYsy2yVuqqmnkM9tW4dWo6xvAoxuVXyM36qZK54fyCmHoY1iKi9FJAUZrlPqmGNXFw==" crossorigin="anonymous"></script>
<script src="utility.js"></script>
<script src="main.js"></script>