-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
72 lines (69 loc) · 2.79 KB
/
index.html
File metadata and controls
72 lines (69 loc) · 2.79 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/html">
<head>
<meta charset="UTF-8">
<meta name="author" content="zero86">
<meta name="description" content="vanillajs js javascript toyproject nomadcoders">
<meta name="keyword" content="vanillajs, js, javascript, toyproject, nomadcoders, html, css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>zero86's vanilla JS project</title>
<!-- google fonts by Open Sans -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet">
<!-- import css -->
<link rel="stylesheet" type="text/css" href="./css/index.css"/>
<link rel="stylesheet" type="text/css" href="./css/weather.css"/>
</head>
<body>
<main class="app">
<div class="water-drops-wrap">
<div class="water-drops">
<div class="water-drop"></div>
<div class="water-drop"></div>
<div class="water-drop"></div>
<div class="water-drop"></div>
<div class="water-drop"></div>
<div class="water-drop"></div>
<div class="water-drop"></div>
<div class="water-drop"></div>
</div>
</div>
<section class="app__body">
<div class="app__login">
<input id="user-name" type="text" placeholder="What is your name?"/>
<button id="join-btn" type="button">Join</button>
</div>
<div class="app__contents">
<p id="clock" class="clock"></p>
<p id="greeting" class="greeting"></p>
<p id="quote" class="quote"></p>
<div class="todo__add">
<input id="todo-input" type="text" placeholder="Todo"/>
<button id="todo-add-btn" type="button">Add</button>
</div>
<div class="app__todo">
<!-- <div class="todo-item" data-complete-idx="">-->
<!-- <p data-complete-idx="">나는 잠을 잤다.</p>-->
<!-- <img src="./imgs/delete-forever.png" alt="delete-forever" data-delete-idx=""/>-->
<!-- </div>-->
</div>
</div>
<section class="current-weather">
</section>
</section>
<footer class="app__footer">
<div class="links">
<a href="https://github.com/katanazero86/nomadcoders-js-challenge" target="_blank">
Github
</a>
</div>
<p>
Copyright ⓒ 2021. zero86, Inc. All Rights Reserved
</p>
</footer>
</main>
</body>
</html>
<script src="./js/index.js" type="module" defer></script>