-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (80 loc) · 2.59 KB
/
index.html
File metadata and controls
91 lines (80 loc) · 2.59 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>G-TECH DEZIN</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="navbar">
<div class="logo">G-TECH DEZIN</div>
<div class="menu-toggle" id="menu-toggle">
<span></span>
<span></span>
<span></span>
</div>
<nav class="menu" id="menu">
<ul>
<li><a href="#">HOME</a></li>
<li><a href="#">ABOUT</a></li>
<li><a href="#">SERVICE</a></li>
<li><a href="#">DESIGN</a></li>
<li><a href="#">CONTACT</a></li>
</ul>
</nav>
<div class="search">
<input class="srch" type="search" placeholder="Search">
<button class="btn">Go</button>
</div>
</header>
<!-- Hero Section -->
<section class="hero">
<div class="hero-text">
<h1>Every piece we make<br>supports a cleaner,<br>kinder fashion future.<br>Small changes, Beautiful impact.
</h1>
</div>
<div class="hero-image">
<img src="woman on suit.png" alt="Woman in suit">
</div>
</section>
<!-- Casual Wear -->
<section class="collection">
<h2>CASUAL WEARS</h2>
<div class="grid">
<img src="./1.jpg" alt="">
<img src="./2.jpg" alt="">
<img src="./3.jpg" alt="">
<img src="./4.jpg" alt="">
<img src="./5.jpg" alt="">
<img src="./6.jpg" alt="">
<img src="./7.jpg" alt="">
<img src="./8.jpg" alt="">
<img src="./9.jpg" alt="">
</div>
<button class="btn-primary">Buy Now</button>
</section>
<!-- Corporate Wear -->
<section class="collection">
<h2>CORPORATE WEARS</h2>
<div class="grid">
<img src="./1.jpg" alt="">
<img src="./2.jpg" alt="">
<img src="./3.jpg" alt="">
<img src="./4.jpg" alt="">
<img src="./5.jpg" alt="">
<img src="./6.jpg" alt="">
</div>
<button class="btn-primary">Explore Collection</button>
</section>
<script>
// Toggle menu
const toggle = document.getElementById("menu-toggle");
const menu = document.getElementById("menu");
toggle.addEventListener("click", () => {
menu.classList.toggle("active");
toggle.classList.toggle("open");
});
</script>
</body>
</html>