-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.46 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.46 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
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<title>Timer</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="promotion">
<div class="bgc_blue"></div>
<div class="container">
<div class="promotion__text">
<div class="title">Title</div>
<div class="promotion__descr">
Some description for your goods and why people need to buy it as soon as possible and say how many they can economy in percent <span> some percent {like 20%!}</span>
</div>
</div>
<div class="promotion__timer">
<div class="title">Time to over</div>
<div class="timer">
<div class="timer__block">
<span id="days">12</span>
days
</div>
<div class="timer__block">
<span id="hours">20</span>
hours
</div>
<div class="timer__block">
<span id="minutes">56</span>
minutes
</div>
<div class="timer__block">
<span id="seconds">20</span>
seconds
</div>
</div>
</div>
</div>
</body>
<script src="script.js"></script>
</html>