-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
123 lines (122 loc) · 4.68 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!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" />
<!-- CSS File -->
<link rel="stylesheet" href="/style.css" />
<!-- Font Orbiton -->
<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=Orbitron:wght@400;500;600;700;800&display=swap"
rel="stylesheet"
/>
<!-- FONT Poppins -->
<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@200;300;400;500;600;700&display=swap"
rel="stylesheet"
/>
<title>Document</title>
</head>
<body>
<div class="container">
<!-- Navbar Section -->
<section aria-label="navbar">
<nav class="navbar-container">
<div>
<img src="/assets/Logo.png" alt="brand-logo" />
</div>
<div>
<ul class="list">
<li class="list-item">Home</li>
<li class="list-item">Male</li>
<li class="list-item">Female</li>
<li class="list-item">FAQ</li>
<li class="list-item">About</li>
</ul>
</div>
<div class="button-group">
<div class="search-icon">
<svg
width="32"
height="35"
viewBox="0 0 32 35"
fill="none"
xmlns="http://www.w3.org/2000/svg"
>
<path
d="M13.42 25.34C6.56004 25.34 0.97998 19.76 0.97998 12.9C0.97998 6.03999 6.56004 0.459991 13.42 0.459991C20.28 0.459991 25.86 6.03999 25.86 12.9C25.87 19.76 20.28 25.34 13.42 25.34ZM13.42 2.44999C7.66004 2.44999 2.97998 7.13999 2.97998 12.89C2.97998 18.64 7.66004 23.33 13.42 23.33C19.18 23.33 23.86 18.64 23.86 12.89C23.86 7.13999 19.18 2.44999 13.42 2.44999Z"
fill="black"
/>
<path
d="M30.35 34.4C30.07 34.4 29.7899 34.28 29.5899 34.05L19.75 22.53C19.39 22.11 19.44 21.48 19.86 21.12C20.28 20.76 20.91 20.81 21.27 21.23L31.11 32.75C31.47 33.17 31.42 33.8 31 34.16C30.81 34.32 30.58 34.4 30.35 34.4Z"
fill="black"
/>
</svg>
</div>
<div><button class="nav-button">Search</button></div>
</div>
</nav>
</section>
<!-- Hero Banner Section -->
<section aria-label="banner">
<div class="hero-container">
<!-- --------------- -->
<!-- Patterns -->
<!-- ---------------- -->
<span class="square">
<img src="/assets/squares.png" alt="square-pattern" />
</span>
<!-- Star -->
<span class="star">
<img src="/assets/start.png" alt="start-pattern" />
</span>
<span class="starTwo">
<img src="/assets/start.png" alt="start-pattern" />
</span>
<!-- Globe -->
<span class="globe">
<img src="/assets/globe.png" alt="globe-pattern" />
</span>
<div>
<img src="/assets/Image.png" alt="person-hero-iamge" />
</div>
<div class="hero-container-right">
<h1 class="hero-heading">What’s Trend in 2025 ?</h1>
<p class="hero-description">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor in- cididunt ut labore et dolore magna aliqua. Ut
enim ad minim veniam, quis nostrud exercitation ullamco laboris
nisi ut
</p>
<div>
<button class="button-email">Email Address</button>
<button class="button-join">JOIN NOW</button>
</div>
<div>
<h4 class="contact-heading">Contact us</h4>
<div class="icons">
<span>
<img src="/assets/Group.png" alt="facebook-icon" />
</span>
<span>
<img src="/assets/Group (1).png" alt="messenger-icon" />
</span>
<span>
<img src="/assets/Group (2).png" alt="instagram-icon" />
</span>
<span>
<img src="/assets/Group (3).png" alt="whatsapp-icon" />
</span>
</div>
</div>
</div>
</div>
</section>
</div>
</body>
</html>