-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (38 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Counter</title>
<!-- Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap" rel="stylesheet">
<!-- CSS -->
<link rel="stylesheet" href="src/style.css">
<!-- Java Script -->
<script defer src="src/script.js"></script>
</head>
<body>
<div class="counter">
<p class="title">COUNTER</p>
<div class="functions">
<div class="box">
<p id="number">00</p>
</div>
<div class="icons">
<div class="icon-reload">
<img id="icon-reload" src="src/svg/reload.svg" alt="reload-icon">
</div>
<div class="icon-back">
<img id="icon-back" src="src/svg/arrowleft.svg" alt="back one-icon">
</div>
</div>
</div>
<div class="info">
<p class="border-top"></p>
<p class="text">to increment the counter, <br>click on it (space where numbers are show)</p>
</div>
</div>
</body>
</html>