-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (49 loc) · 2.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="This is a simple, beautiful, clean and awesome stopwatch" />
<meta name=”robots” content=”index, follow”>
<meta property=”og:type” content=”article” />
<meta property=”og:title” content=”Awesome online stopwatch” />
<meta property=”og:description” content=”This is a simple, beautiful, clean and awesome stopwatch” />
<meta property=”og:url” content=http://awesome-online-stopwatch.herokuapp.com/ />
<meta property=”og:site_name” content=”Awesome online stopwatch” />
<meta name=”twitter:title” content=”Awesome online stopwatch”>
<meta name=”twitter:description” content=”This is a simple, beautiful, clean and awesome stopwatch”>
<script data-ad-client="ca-pub-1182251700678327" async
src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<link rel="canonical" href="http://awesome-online-stopwatch.herokuapp.com/">
<title>Awesome online stopwatch</title>
<link href="https://fonts.googleapis.com/css?family=Montserrat&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<header>
<h1>AWESOME ONLINE STOPWATCH</h1>
</header>
<main>
<div class="cronometer">
<div id="display">
<p id="numbers">
<span id="hours">00</span>:
<span id="minutes">00</span>:
<span id="seconds">00</span>:
<span id="milliseconds">000</span>
</p>
</div>
<div id="buttons">
<button class="btn start"><i class="fas fa-play"></i>START</button>
<button class="btn stop"><i class="fas fa-stop"></i>STOP</button>
<button class="btn"><i class="far fa-copy"></i>COPY</button>
</div>
</div>
</main>
<footer>
<p>Created with <span>♥</span> by Álvaro</p>
</footer>
<script src="https://kit.fontawesome.com/b9fccc2430.js" crossorigin="anonymous"></script>
<script src="./script.js"></script>
</body>
</html>