-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
77 lines (74 loc) · 2.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Timer App</title>
<link rel="stylesheet" href="./styles/style.css" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@200;900&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,300;1,300&display=swap"
rel="stylesheet"
/>
</head>
<body>
<header>
<nav class="navigation">
<div class="logo-container">
<a href="#">
<img
class="logo"
src="https://www.raweng.com/v3/assets/bltaacb6b0c9b693c2d/bltc1a71705f49d391d/5de663548d1dce6ad6bed8bf/header-logo.svg?format=pjpg&width=220"
alt=""
/>
</a>
</div>
</nav>
</header>
<main>
<div class="stopwatch">
<h1><span class="gold">Timer</span> App</h1>
<div class="circle">
<span class="time" id="display">00:00:00</span>
</div>
<div class="controls">
<button class="buttonPlay">
<img
id="playButton"
src="https://res.cloudinary.com/https-tinloof-com/image/upload/v1593360448/blog/time-in-js/play-button_opkxmt.svg"
/>
<img
id="pauseButton"
src="https://res.cloudinary.com/https-tinloof-com/image/upload/v1593360448/blog/time-in-js/pause-button_pinhpy.svg"
/>
</button>
<button class="buttonReset">
<img
id="resetButton"
src="https://res.cloudinary.com/https-tinloof-com/image/upload/v1593360448/blog/time-in-js/reset-button_mdv6wf.svg"
/>
</button>
</div>
</div>
</main>
<footer>
<p class="copy">
© 2020 All Rights Reserved by <span>Altaf Shaikh</span>
</p>
<div class="social-links">
<a href="#" class="fa fa-twitter twitter"></a>
<a href="#" class="fa fa-linkedin linkedin"></a>
<a href="#" class="fa fa-facebook facebook"></a>
<a href="#" class="fa fa-github github"></a>
</div>
</footer>
<script src="./src/timer.js"></script>
</body>
</html>