-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
173 lines (162 loc) · 6.1 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>g3-architects</title>
<!-- style link -->
<link rel="stylesheet" href="styles/style.css" />
</head>
<body>
<!-- -- header part -- -->
<header class="bg-seondary ">
<nav class="wrap">
<h2 class="dark-1">G3 Architects</h2>
<ul class="dark-2">
<li><a href="home">Home</a></li>
<li><a href="about">About</a></li>
<li><a href="contact"> Contact Us </a></li>
<li><a href="login">Login </a></li>
</ul>
</nav>
<div id="home" class="wrap banner-section">
<h1>
Brand New <br />
Group of Architects
</h1>
<p>
There are many variations of passages of Lorem Ipsum available, but
the majority have suffered alteration in some form, by injected
humour, or randomised words which don't look even
</p>
<button class="btn-primary">Explore More</button>
<div class="section-img">
<img src="images/banner.png" alt="" />
</div>
</div>
</header>
<main class="wrap">
<!-- Our Features -->
<section class="features ">
<div class="featur img-section">
<img src="images/team1.png" alt="" />
<img src="images/team2.png" alt="" />
<img src="images/team3.png" alt="" />
<img src="images/team4.png" alt="" />
</div>
<div class="featur text-section">
<h2>
<span class="dark-3">Quick kist</span>
<span class="dark-1"> of Our</span> <br />
<span class="text-primary">Featurs</span>
</h2>
<p>
There are many variations of passages of Lorem Ipsum available, but
the majority have suffered alteration in some form, by injected
humour, or randomised words which don't look even
</p>
<button class="btn-primary">Explore More</button>
</div>
</section>
<!-- about part -->
<section class="wrap about-section ">
<div class="about-content about-p">
<h2 class="about-heading section-heading">
Featurs you will <br />
love & enjoy
</h2>
<p>
There are many variations of passages of Lorem Ipsum available, but
the majority have suffered alteration in some form, by injected
humour, or randomised words which don't look even
</p>
<div class="contents">
<h4>Dexktop & Mobile Version</h4>
<p>
There are many variations of passages of Lorem Ipsum available,
but the majority have suffered alteration in some form, by
injected humour, or randomised...........
</p>
</div>
<div class="contents">
<h4>Drag & Drop Builder</h4>
<p>
There are many variations of passages of Lorem Ipsum available,
but the majority have suffered alteration in some form, by
injected humour, or randomised...........
</p>
</div>
<div class="contents">
<h4>Awesome Modern Design</h4>
<p>
There are many variations of passages of Lorem Ipsum available,
but the majority have suffered alteration in some form, by
injected humour, or randomised...........
</p>
</div>
<div class="contents">
<h4>Super Easy to Edit</h4>
<p>
There are many variations of passages of Lorem Ipsum available,
but the majority have suffered alteration in some form, by
injected humour, or randomised...........
</p>
</div>
</div>
<div class="about-content">
<img src="images/architect.png" alt="" />
<button class="badge">
<h2>10+Year</h2>
<p>Experience</p>
</button>
</div>
</section>
<!-- facts section -->
<section class="wrap fatchs-section">
<h2 class="section-heading">Some Facts</h2>
<p>
There are many variations of passages of Lorem Ipsum <br />available,
but the majority have suffered alteration.
</p>
<div class="facts">
<div class="fact">
<div class=""><img src="images/icons/ribon.png" alt="" /></div>
<h2>54</h2>
<p>Awards</p>
</div>
<div class="fact">
<div class=""><img src="images/icons/projects.png" alt="" /></div>
<h2>1458</h2>
<p>Project finished</p>
</div>
<div class="fact">
<div class=""><img src="images/icons/customers.png" alt="" /></div>
<h2>590</h2>
<p>Clints Worked</p>
</div>
<div class="fact">
<div class=""><img src="images/icons/email.png" alt="" /></div>
<h2>22578</h2>
<p>Email Send</p>
</div>
</div>
</section>
<!-- sponspors section -->
<section class="wrap sponspors-section">
<h2 class="section-heading text-center">Our Spospors</h2>
<p class="text-center">There are many variations of passages of Lorem Ipsum available, <br> but the majority have suffered alteration.</p>
<div class="sponspors">
<div class="sponspor"><img src="images/sponsors/amazon.png" alt=""></div>
<div class="sponspor"><img src="images/sponsors/google.png" alt=""></div>
<div class="sponspor"><img src="images/sponsors/spotify.png" alt=""></div>
<div class="sponspor"><img src="images/sponsors/telerama.png" alt=""></div>
<div class="sponspor"><img src="images/sponsors/figma.png" alt=""></div>
</div>
</section>
</main>
<!-- footer -part -->
<footer class="wrap text-center bg-seondary">
<p>All rights reserved copyright@2024 startup landing page design</p>
</footer>
</body>
</html>