-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIndex.html
50 lines (43 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mini Wristwatch P.P</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header><img src="amazon-logo.png" alt="" /></header>
<main id="-main-body">
<div id="watch-image">
<p id="timer">
<span id="second">00</span>
<span id="pulse">Pulse: 78</span>
</p>
</div>
<div id="watch-details">
<h1>Fitbit 19 - The Smartest Watch</h1>
<p>
Lorem ipsum dolor sit amet consectetur adipisicing elit. Est, porro
ducimus eos tenetur in quaerat explicabo excepturi possimus
perferendis mollitia esse hic deserunt. Labore nostrum similique esse
repellat recusandae illum.
</p>
<h3>Select Color</h3>
<div id="color-palettes">
<span id="color-red"></span>
<span id="color-blue"></span>
<span id="color-pink"></span>
<span id="color-black"></span>
<span id="color-purple"></span>
</div>
<h3>Features</h3>
<button id="time-piece">Time</button>
<button id="heart-rate">Pulse</button>
<button id="buy-now">Buy Now</button>
</div>
</main>
<script src="script.js"></script>
</body>
</html>