-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (33 loc) · 1.1 KB
/
index.html
File metadata and controls
36 lines (33 loc) · 1.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div id="countdown" class="countdown">
<img src="https://octodex.github.com/images/daftpunktocat-thomas.gif" id="octocat" alt="">
<h1 class="countdown-title">Скоро открытие</h1>
<div>
<div class="countdown-number">
<span class="days countdown-time"></span>
<span class="countdown-text">Дней</span>
</div>
<div class="countdown-number">
<span class="hours countdown-time"></span>
<span class="countdown-text">Часов</span>
</div>
<div class="countdown-number">
<span class="minutes countdown-time"></span>
<span class="countdown-text">Минут</span>
</div>
<div class="countdown-number">
<span class="seconds countdown-time"></span>
<span class="countdown-text">Секунд</span>
</div>
</div>
</div>
<script src="js/timer.js"></script>
</body>
</html>