-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
35 lines (34 loc) · 1.12 KB
/
main.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
<!DOCTYPE HTML>
<html>
<head>
<title>Main</title>
<meta name="viewport" charset="UTF-8" content="width=device-width, initial-scale=1">
<script src="https://kit.fontawesome.com/232d9d6904.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;500&display=swap" rel="stylesheet">
</head>
<body>
<div class="infoSect">
<div class="topSect">
<div>
<img class="menu-img">
</div>
<div class="js-weather"></div>
</div>
<h1 class="greeting">Good to see you</h1>
<div class="todoSect">
<div class="todo-list">
<form class="todo-form">
<input class="add-task" placeholder="+ Write a To-do" /><i class="fas fa-check fa-2x"></i>
</form>
<div class="pending">
<ul></ul>
</div>
</div>
</div>
</div>
<div class="buttonLocation">
<button class="start-btn">시작</button>
</div>
<script src="./public/main_bundle.js"></script>
</body>
</html>