-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (149 loc) · 6.6 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
<!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>g3-architects</title>
<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@500&family=Work+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<!-- navigation bar -->
<header class="header-color">
<nav class="nav-container">
<div class="navigation">
<h1>G3 Architects</h1>
</div>
<div class="menu">
<ul>
<li>Home</li>
<li>About</li>
<li>Contact us</li>
<li>Login</li>
</ul>
</div>
</nav>
<section class="banner-container">
<div class="banner-info">
<h1 class="banner-header">Brand New<br>Group of Architects</h1>
<p class="banner-discription">There are many variations of passages of Lorem Ipsum available, but the
majority have suffered alteration in<br> some form, by injected humour, or randomised wor ds which
don't look even</p>
<button class="banner-button">Explore More</button>
<img src="images/banner.png" alt="">
</div>
</section>
</header>
<main>
<section class="features-head">
<div class="features">
<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="features-info">
<h2 class="features-title"><span style="color: #727272;">Quick list</span> of Our<br><span
style="color: orange;">Features</span></h2>
<p class="features-discription">There are many variations of passages of Lorem Ipsum available,<br>but
the majority have suffered alteration in some form, by injected<br>humour, or randomised words which
don't look even</p>
<button class="features-button">Explore More</button>
</div>
</section>
<section class="blog-container">
<div class="blog">
<h1>Features you will<br>love & enjoy</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>
<div id="box-shadow">
<h3>Dextop & Mobile Version</h3>
<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>
<br>
<div id="box-shadow">
<h3>Drag $ Drop Biulder</h3>
<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>
<br>
<div id="box-shadow">
<h3>Awesome Modern Design</h3>
<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>
<br>
<div id="box-shadow">
<h3>Super Easy to Edit</h3>
<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="blog-img">
<img src="./images/architect.png" alt="">
<button class="creative-button"><b>10+Year</b><br><small>Experience</small></button>
</div>
</section>
<section>
<div class="fact">
<h1>Some Facts</h1>
<p>There are many variations of passages of Lorem Ipsum available, but<br>
the majority have suffered alteration.</p>
<div class="grid-fact">
<div class="fact-border">
<img src="./images/icons/ribon.png" alt="">
<p>54</p>
<p>Awards Winings</p>
</div>
<div class="fact-border">
<img src="./images/icons/projects.png" alt="">
<p>1458</p>
<p>Projects Finished</p>
</div>
<div class="fact-border">
<img src="./images/icons/customers.png" alt="">
<p>590</p>
<p>Clients Workd</p>
</div>
<div class="fact-border">
<img src="./images/icons/email.png" alt="">
<p>22578</p>
<p>Email Send</p>
</div>
</div>
</div>
</section>
<section>
<div class="sponsor">
<h1>Our Sponspors</h1>
<p>There are many variations of passages of Lorem Ipsum available, but<br>
the majority have suffered alteration.</p>
</div>
<div class="company">
<div>
<img src="./images/sponsors/spotify.png" alt="">
</div>
<div>
<img src="./images/sponsors/amazon.png" alt="">
</div>
<div>
<img src="./images/sponsors/google.png" alt="">
</div>
<div>
<img src="./images/sponsors/telerama.png" alt="">
</div>
<div>
<img src="./images/sponsors/figma.png" alt="">
</div>
</div>
</section>
</main>
<footer>
<p class="footer-color">All rights reserved copyright: ©2023 startup landing page design</p>
</footer>
</body>
</html>