-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (76 loc) · 3.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!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>Headphone landing page</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
integrity="sha512-KfkfwYDsLkIlwQp6LFnl8zNdLGxu9YAA1QvwINks4PhcElQSvqcyVLLD9aMhXd13uQjoXtEKNosOWaZqXgel0g=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- google button -->
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<script src="script.js" defer></script>
</head>
<body>
<header class="bg-light">
<nav class="navbar navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="#">
<img src="./assets/google.png" alt="logo" width="30" height="30">
</a>
<a href="#" class="toggle-button">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</a>
<ul class="menu">
<li><a href="#">General Info</a></li>
<li><a href="#">Technical Specs</a></li>
<li><a href="#">Configuration</a></li>
<li><button class="btn btn-primary" type="submit">Preorder</button></li>
<!-- <i class="fa-solid fa-cart-shopping fa-2x"></i> -->
<li><img class="cart" src="./assets/cart.png" alt="cart"></li>
</ul>
<!-- <ul class="right-menu">
</ul> -->
</div>
</nav>
<div class="hero-container ">
<div class="row">
<div class="col-lg-6 col-md-12">
<img class="hero-img" src="./assets/head-phone.png" alt="headphone">
</div>
<div class="col-lg-6 heading">
<div class="row">
<h1>Introducing </h1>
<h1>Google Headphones</h1>
<h3 class="gap">Loud and Clear</h3>
</div>
<div class="row">
<section class="play-btn-section">
<!-- <button class="play-btn"><i class="fa-solid fa-circle-play fa-2x"></i></button> -->
<button class="play-btn"><img style="color: blue;" src="./assets/play-button.png"
alt="play"></button>
</section>
</div>
</div>
</div>
</div>
<div class="social">
<ul>
<li><a href="#"><i class="fa-brands fa-twitter "></i></a></li>
<li><a href="#"><i class="fa-brands fa-instagram "></i></a></li>
<li><a href="#"><i class="fa-brands fa-youtube "></i></a></li>
</ul>
</div>
</header>
</body>
</html>