-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
81 lines (70 loc) · 3.03 KB
/
home.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
<!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>Document</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">
<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=MuseoModerno:wght@200;300;400;700&family=Roboto:wght@400;500&display=swap"
rel="stylesheet">
<!--- project by using flex box -->
</head>
<body>
<header>
<a href="#" class="logo"><i class='bx bx-stopwatch'></i>Honor</a>
<ul class="navlist">
<li><a href="#" class="active">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Smartphone</a></li>
<li><a href="#">Store</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
<div class="h-main">
<a href="#" class="h-btn">Buy Now</a>
<div class="bx bx-menu" id="menu-icon"></div>
<div class="bx bx-moon" id="darkmode"></div>
</div>
</header>
<section class="hero">
<div class="hero-text">
<h1>Smartwatch</h1>
<h4>Element serie</h4>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.Aliquam congue sed et leo, dignissim odio justo.
</p>
<div class="hero-in">
<div class="box">
<h3>White</h3>
<h5>Element</h5>
<img src="https://cdn.shopify.com/s/files/1/0057/8938/4802/products/a6549acb-b075-4c3e-8ed3-9c9fcba32d42_288x.png?v=1625046216"
alt="" width="190px" height="190px">
</div>
<div class="box">
<h3>White</h3>
<h5>Element</h5>
<img src="https://cdn.shopify.com/s/files/1/0057/8938/4802/products/a6549acb-b075-4c3e-8ed3-9c9fcba32d42_288x.png?v=1625046216"
alt="" width="190px" height="190px">
</div>
<div class="box">
<h3>White</h3>
<h5>Element</h5>
<img src="https://cdn.shopify.com/s/files/1/0057/8938/4802/products/a6549acb-b075-4c3e-8ed3-9c9fcba32d42_288x.png?v=1625046216"
alt="" width="190px" height="190px">
</div>
</div>
</div>
<div class="hero-img">
<img src="http://cdn.shopify.com/s/files/1/0997/6284/products/Ultra2Buzz500x5001_grande.png?v=1668076206" alt="">
</div>
</section>
<div class="down-arrow">
<i class='bx bx-down-arrow-alt'></i>
</div>
<script src="https://unpkg.com/scrollreveal"></script>
<script src="script.js"></script>
</body>
</html>