-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
117 lines (117 loc) · 4.03 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Momenton</title>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="assets/css/reset.css" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="stylesheet" href="assets/css/weather-icons.min.css" />
<script src="assets/src/common.js" defer></script>
<script src="assets/src/bg.js" defer></script>
<script src="assets/src/time.js" defer></script>
<script src="assets/src/weather.js" defer></script>
<script src="assets/src/quote.js" defer></script>
<script src="assets/src/todolist.js" defer></script>
<script src="assets/src/text.js" defer></script>
</head>
<body>
<div class="loading"></div>
<header id="header">
<h1 class="sr-only">검색창과 날씨 정보</h1>
<div class="header__search">
<button class="header__toggle" type="button">Search</button>
<div class="header__form-container">
<form
class="header__form"
action="https://www.google.com/search"
method="GET"
>
<input class="header__form--input" type="search" />
<button class="header__form--btn" type="submit"></button>
</form>
</div>
</div>
<div class="header__weather">
<div class="header__weather--container">
<i class="header__weather--ico wi"></i>
<div class="header__weather--temperature"></div>
</div>
<div class="header__weather--location"></div>
</div>
</header>
<section class="container-top">
<h1 class="container-top--time"></h1>
<form
class="container-top__greeting"
action=""
method="get"
name="greeting"
>
<h2 class="container-top__greeting--text">
Thank you visiting our website !
</h2>
<input
class="container-top__greeting--input"
type="text"
placeholder="What's Your Name ?"
name="name"
autocomplete="off"
required
/>
<button
class="container-top__greeting--edit hide"
type="button"
data-type="edit"
></button>
</form>
</section>
<section class="container-bottom">
<h1 class="sr-only">배경이미지 정보와 명언, 할일목록</h1>
<div class="container-bottom--description">
<a href="#n" class="container-bottom--location" target="_blanks">
<span class="bg-location"></span>
<span class="bg-user"></span>
</a>
</div>
<blockquote
class="container-bottom--text"
cite="https://favqs.com/quotes/mahatma-gandhi/58657-truth-never-d-"
>
<p class="container-bottom--quote"></p>
<cite class="container-bottom--author"></cite>
</blockquote>
<div class="container-bottom--container">
<button class="container-bottom--toggle">Todo</button>
<div class="container-bottom--container__position">
<div class="container-bottom--container__container">
<header class="container-bottom--container__container--header">
<h2 class="container-bottom--container__container--title">
ToDoList
</h2>
</header>
<form
class="container-bottom--container__container--form"
action=""
method="get"
>
<ul class="container-bottom--container__container--list">
<p class="no-list">Make Your List 👇</p>
</ul>
<input
class="container-bottom--container__container--input"
type="text"
placeholder="Write Your List"
required
/>
</form>
</div>
</div>
</div>
</section>
</body>
</html>