-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
153 lines (153 loc) · 7.38 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" type="image/x-icon" href="./src/assets/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://icono-49d6.kxcdn.com/icono.min.css">
<title>Momentum</title>
</head>
<body>
<header class="header">
<div class="wrapper header__wrapper">
<div class="audio-player">
<div class="audio-player-controls">
<div class="audio-player-controls__wrapper">
<span class="icon icon_prew-track"></span>
<span class="icon icon_play"></span>
<span class="icon icon_next-track"></span>
</div>
<div class="audio-player-progress">
<input
type="range"
id="progress-bar"
step="0.01"
min="0"
max=""
value="0"
/>
<div class="audio-player-audio-volume">
<div class="audio-player-time">
<span class="currentTime"></span>
<span>/</span>
<span class="durationTime"></span>
</div>
<div class="volume-container">
<div class="volume-button">
<div class="volume icono-volumeMedium"></div>
</div>
<div class="volume-slider">
<div class="volume-percentage"></div>
</div>
</div>
</div>
</div>
</div>
<ul class="audio-player__playlist"></ul>
</div>
<div class="weather">
<input type="text" placeholder="Enter city" class="city">
<span class="weather-icon owf"></span>
<div class="weather">
<div class="description-container">
<span class="weather__description"></span>
<span class="weather__temperature"></span>
</div>
<div class="weater__wind"></div>
<div class="weather__humidity"></div>
</div>
</div>
</div>
</header>
<main class="main">
<div class="slider">
<span class="icon icon-slider icon-slider_prew"></span>
<span class="icon icon-slider icon-slider_next"></span>
</div>
<div class="time"></div>
<div class="date"></div>
<div class="greeting">
<span class="greeting__welcome"></span>
<input type="text" placeholder="[Enter name]" class="name">
</div>
</main>
<footer class="footer">
<div class="wrapper footer__wrapper">
<span class="icon icon-settings"></span>
<div class="settings">
<div class="settings__header">
<div class="select-group">
<p class="select-group__title-language">Change language</p>
<select class="select-group__select-language">
<option value="en">english</option>
<option value="ru">russian</option>
</select>
</div>
<div class="select-group">
<p class="select-group__title-photo">Change Photo Source</p>
<select class="select-group__select-photo">
<option value="github">GitHub</option>
<option value="unsplash">Unsplash Api</option>
<option value="flickr">Flickr Api</option>
</select>
</div>
<div class="select-group">
<p class="select-group__title-tag">Change Photo tag</p>
<select class="select-group__select-tag">
<option value="nature">Nature</option>
<option value="travel">Travel</option>
<option value="city">City</option>
</select>
</div>
</div>
<div class="settings__blocks">
<div class="settings__blocks-wrapper">
<div class="checkbox">
<input class="checkbox__input" type="checkbox" id="time" role="switch" name="time" checked>
<label class="checkbox__label" for="time">time</label>
</div>
<div class="checkbox">
<input class="checkbox__input" type="checkbox" id="date" role="switch" name="date" checked>
<label class="checkbox__label" for="date">date</label>
</div>
<div class="checkbox">
<input class="checkbox__input" type="checkbox" id="greeting" role="switch" name="greeting" checked>
<label class="checkbox__label" for="greeting">greeting</label>
</div>
<div class="checkbox">
<input class="checkbox__input" type="checkbox" id="quotes" role="switch" name="quotes" checked>
<label class="checkbox__label" for="quotes">quotes</label>
</div>
<div class="checkbox">
<input class="checkbox__input" type="checkbox" id="weather" role="switch" name="weather" checked>
<label class="checkbox__label" for="weather">weather</label>
</div>
<div class="checkbox">
<input class="checkbox__input" type="checkbox" id="audio-player" role="switch" name="audio-player" checked>
<label class="checkbox__label" for="audio-player">player</label>
</div>
<div class="checkbox">
<input class="checkbox__input" type="checkbox" id="todo" role="switch" name="todo" checked>
<label class="checkbox__label" for="todo">todo</label>
</div>
</div>
</div>
</div>
<div class="quotes">
<span class="icon qoutes-icon"></span>
<q class="quote"></q>
<cite class="author"></cite>
</div>
<span class="icon icon-todo"></span>
<div class="todo">
<div class="input-group">
<input class="input-group__input" type="text" placeholder="[Add task name]">
<span class="input-group__button">Add task</span>
</div>
<ul class="todo-container"></ul>
</div>
</div>
</footer>
</body>
</html>