-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (61 loc) · 2.44 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/767d91593f.js" crossorigin="anonymous"></script>
</head>
<body>
<i class="fa-solid fa-sparkles"></i>
<header>
<div class="logo-container">
<img src="img/logo.svg" alt="logo" />
<h4 class="logo">Three Dots by Chetan</h4>
</div>
<nav>
<!-- <div class="Navbar__Link Navbar__Link-toggle">
<i class="fas fa-bars"></i>
</div> -->
<ul class="nav-links">
<li> <a href="#" class="nav-link
">Specs</a></li>
<li> <a href="#" class="nav-link ">Products</a></li>
<li> <a href="#" class="nav-link ">Contact</a></li>
</ul>
</nav>
<div class="cart">
<img src="img/cart.svg" alt="cart" />
</div>
</header>
<main>
<section class="presentation">
<div class="introduction">
<div class="intro-text">
<h1>Laptop for the Future</h1>
<p>The new 14 inch bezel-less dsiplay offering a 4k display with touch screen</p>
</div>
<div class="cta">
<button class="cta-select">
14 Inch
</button>
<button class="cta-add">Add to Cart</button>
</div>
</div>
<div class="cover">
<img src="img/matebook.png" alt="matebook" />
</div>
</section>
<img class="big-circle" src="img/big-eclipse.svg" alt="big-eclipse" />
<img class="mid-circle" src="img/mid-eclipse.svg" alt="mid-eclipse" />
<img class="small-circle" src="img/small-eclipse.svg" alt="small-eclipse" />
</main>
<script src="app.js" async defer></script>
</body>
</html>