-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (35 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/styles.css">
<title>Momentum-Clone</title>
</head>
<body>
<main>
<div class="clock-container">
<h3 class="js-clock clock">00:00</h3>
</div>
<section class="form-section">
<form class="js-form" action="">
<input class="form__input" type="text" placeholder="What is your name?">
</form>
</section>
<section class="todo-section">
<form class="js-todo" action="">
<input class="todo__input" type="text" placeholder="Write a to do📝">
</form>
<ul class="js-todo-list"></ul>
</section>
<span class="js-weather"></span>
<h5>made by. YW</h5>
</main>
<script src="js/clock.js"></script>
<script src="js/background.js"></script>
<script src="js/greeting.js"></script>
<script src="js/toDo.js"></script>
<script src="js/weather.js"></script>
</body>
</html>