-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (62 loc) · 1.74 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
<!DOCTYPE html>
<html>
<head>
<title>Welcome Page</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width-device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-compatible" content="ie=edge"/>
<link href="https://fonts.googleapis.com/css?family=Poppins:400,500&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="./style2.css">
</head>
<body>
<header>
<div class="logo-container">
<img src="Logo.svg">
<h4 class="Logo">Rhetoric Cube</h4>
</div>
<nav>
<ul class="nav-links">
<li ><a class="nav-link" href="#">Specs</li>
<li ><a class="nav-link" href="#">Products</li>
<li ><a class="nav-link" href="#">Contact</li>
</nav>
<div class="cart">
<img src="Cart.svg" alt="cart">
</div>
</header>
<main>
<section class="presentation">
<div class="introduction">
<div class="intro-text">
<h1>Watch For The Millenials</h1>
<p>
Display: Analogue <br>
Movement: Quartz <br>
Power source: Battery <br>
Water resistance: 30 m <br>
Warranty: 2 years <br>
</p>
</div>
<div class="cta">
<button class="cta-select">Gold </button>
<button class="cta-add">Add to Cart</button>
</div>
</div>
<div class="cover">
<img src="./watch.png" alt="Golden Watch ">
</div>
</section>
<div class="watch-select">
<img src="LArrow.svg">
<img src="EDot.svg">
<img src="FullDot.svg">
<img src="FullDot.svg">
<img src="FullDot.svg">
<img src="RArrow.svg">
</div>
<img class="big-circle" src="Bigg.svg">
<img class="medium-circle"src="Medium.svg">
<img class="small-circle" src="Small.svg">
</main>
</body>
</html>