-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (37 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>New Year</title>
<link rel="stylesheet" href="styles/style.css" />
<meta name="description" content="HTML, CSS, JavaScript" />
<meta name="keywords" content="HTML, CSS, JavaScript" />
<meta name="author" content="Kestutis Kurienius" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body class="body">
<header class="header">
<h1 class="title">Till The New Year left:</h1>
</header>
<main class="main">
<div class="element">
<p class="number" id="dayNumberId">0</p>
<span class="numberName" id="dayNameId">Days</span>
</div>
<div class="element">
<p class="number" id="hourNumberId">0</p>
<span class="numberName" id="hourNameId">Hours</span>
</div>
<div class="element">
<p class="number" id="minNumberId">0</p>
<span class="numberName" id="minNameId">Minutes</span>
</div>
<div class="element">
<p class="number" id="secNumberId">0</p>
<span class="numberName" id="secNameId">Seconds</span>
</div>
</main>
<footer class="footer">Kęstutis</footer>
<script src="scripts/script.js"></script>
</body>
</html>