-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
242 lines (228 loc) · 7.79 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Lab5</title>
<link
rel="stylesheet"
media="(min-width: 769px)"
href="./css-wide/styles.css"
/>
<link
rel="stylesheet"
media="(min-width: 769px)"
href="./css-wide/card.css"
/>
<link
rel="stylesheet"
media="(min-width: 769px)"
href="./css-wide/general.css"
/>
<link
rel="stylesheet"
media="(min-width: 769px)"
href="./css-wide/header.css"
/>
<link
rel="stylesheet"
media="(min-width: 769px)"
href="./css-wide/footer.css"
/>
<link
rel="stylesheet"
media="(min-width: 769px)"
href="./css-wide/content.css"
/>
<link
rel="stylesheet"
media="(min-width: 769px)"
href="./css-wide/aside.css"
/>
<link
rel="stylesheet"
media="(min-width: 769px)"
href="./css-wide/form.css"
/>
<link
rel="stylesheet"
media="(max-width: 768px)"
href="./css-narrow/styles.css"
/>
<link
rel="stylesheet"
media="(max-width: 768px)"
href="./css-narrow/card.css"
/>
<link
rel="stylesheet"
media="(max-width: 768px)"
href="./css-narrow/general.css"
/>
<link
rel="stylesheet"
media="(max-width: 768px)"
href="./css-narrow/header.css"
/>
<link
rel="stylesheet"
media="(max-width: 768px)"
href="./css-narrow/footer.css"
/>
<link
rel="stylesheet"
media="(max-width: 768px)"
href="./css-narrow/content.css"
/>
<link
rel="stylesheet"
media="(max-width: 768px)"
href="./css-narrow/aside.css"
/>
<link
rel="stylesheet"
media="(max-width: 768px)"
href="./css-narrow/form.css"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="./icons/favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./icons/favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="./icons/favicon/favicon-16x16.png"
/>
<link rel="manifest" href="./icons/favicon/site.webmanifest" />
</head>
<body>
<div class="container">
<div class="header">
<div id="block-x" class="header-sign">
<header>
<h2>
<i>Lab. work #5</i>
</h2>
</header>
</div>
</div>
<div class="aside-left">
<div class="content">
<div class="center">
<h2>
<i>Why should you choose us?</i>
</h2>
</div>
<div class="menu-text">
<ol>
<li>Wide range of products;</li>
<li>High quality products;</li>
<li>Competitive Prices;</li>
<li>Convenient service and maintenance;</li>
<li>Convenience of online shopping;</li>
<li>Privileges and loyalty programs;</li>
<li>Fast delivery and reliable support service;</li>
<li>
Innovative solutions and the latest
technologies.
</li>
</ol>
</div>
</div>
</div>
<div class="aside-right">
<div id="block-4" class="content">
<div class="center">
<h2>
<i>Interesting facts:</i>
</h2>
</div>
<p>
Rich History: Our company boasts a history of over 50
years, evolving from a small family venture into a
global leader.
</p>
<p>
Worldwide Reach: Our Christmas ornaments are adored not
only in the United States but across the globe.
</p>
</div>
<div class="radio-container">
<form>
<label class="radio-label">
<input
type="radio"
name="textTransform"
value="capitalize"
class="radio-input"
/>
<span class="custom-radio"></span>Capitalize case
</label>
<label class="radio-label">
<input
type="radio"
name="textTransform"
value="initialcase"
class="radio-input"
/>
<span class="custom-radio"></span>Initial case
</label>
</form>
</div>
</div>
<div class="content-top">
<a
href="https://www.9news.com.au/national/how-to-get-up-to-16-days-off-over-christmas-with-seven-annual-leave-days-maximise-annual-leave-hacks/3f047209-e013-4dab-b215-339572087b5c"
>
<h1>
Latest news:    How to get up to 16 days
off over Christmas with as little as seven annual leave
days
</h1>
</a>
</div>
<div id="block-5" class="content-main">
<div class="number-form">
<form id="numberForm" class="form-style">
<input
type="number"
id="number"
name="number"
class="input-field"
placeholder="Enter the number"
required
/>
<input
type="submit"
value="Confirm"
class="submit-button"
/>
</form>
</div>
</div>
<div class="content-bottom">
<h2>Incredible discounts on the eve of Christmas</h2>
</div>
<div class="footer">
<div class="footer-sign">
<footer>
<h2>
<i>Performed by Holiaka Dmytro</i>
</h2>
</footer>
</div>
</div>
</div>
<script src="./js/content-main.js"></script>
<script src="./js/aside-right.js"></script>
<script src="./js/picture-adding.js"></script>
</body>
</html>