-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
271 lines (260 loc) · 9.04 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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Design Agency</title>
<script
src="https://kit.fontawesome.com/1935d064dd.js"
crossorigin="anonymous"
></script>
<link rel="stylesheet" href="https://unpkg.com/aos@next/dist/aos.css" />
<link rel="stylesheet" href="styles.css" />
<link rel="stylesheet" href="media-queries.css" />
</head>
<body>
<header>
<div class="container">
<nav>
<!-- LOGO -->
<img class="logo" src="./images/main-logo.png" alt="" />
<!-- HAMBURGER ICON -->
<div class="hamburger">
<i class="fas fa-bars"></i>
</div>
<!-- NAVIGATION -->
<ul class="nav-ul">
<i class="fas fa-times close"></i>
<li><a href="" class="nav-link current">Home</a></li>
<li><a href="" class="nav-link">Services</a></li>
<li><a href="" class="nav-link">About</a></li>
<li><a href="" class="nav-link">Contact</a></li>
<li><a href="" class="nav-link">Blog</a></li>
</ul>
<i class="fas fa-search search"></i>
</nav>
</div>
</header>
<main>
<!-- Intro Section -->
<section id="intro">
<div class="container">
<div class="intro-text line">
<h1>Solutions Agency </h1>
<a href="#" class="btn btn-dark">Getting Started</a>
</div>
<!-- CARDS -->
<div class="intro-cards">
<div class="card" data-aos="fade-right">
<i class="fas fa-chart-bar"></i>
<h3 class="line heading-3">Future Vision</h3>
<p>
it is a long established fact that a reader will be distracted
by the readable content of a page.
</p>
</div>
<!-- card 2 -->
<div class="card">
<i class="fas fa-rocket"></i>
<h3 class="line heading-3">Product Design</h3>
<p>
There are many variations of the passages of available, but the
majority alteration in some form.
</p>
</div>
<!-- card 3 -->
<div class="card" data-aos="fade-left">
<i class="fas fa-chart-pie"></i>
<h3 class="line heading-3">Great Solution</h3>
<p>
The generated Lorem Ipsum is therefore always free from
repitition, injected humor.
</p>
</div>
</div>
</div>
</section>
<!-- Services Section -->
<section id="services">
<div class="container">
<div class="heading line">
<h2>Services</h2>
<p>WE WORK WITH YOU, NOT FOR YOU</p>
</div>
<div class="services" data-aos="fade-up">
<div class="service">
<i class="fas fa-bookmark"></i>
<h3>Digital Strategy</h3>
<i class="fas fa-arrow-right"></i>
</div>
<!-- service 2 -->
<div class="service">
<i class="fas fa-file-alt"></i>
<h3>UX Design</h3>
<i class="fas fa-arrow-right"></i>
</div>
<!-- service 3 -->
<div class="service">
<i class="fas fa-edit"></i>
<h3>Product Design</h3>
<i class="fas fa-arrow-right"></i>
</div>
<!-- Next three services section -->
<div class="service">
<i class="fas fa-bookmark"></i>
<h3>Content Strategy</h3>
<i class="fas fa-arrow-right"></i>
</div>
<!-- service 2 -->
<div class="service">
<i class="fas fa-file-alt"></i>
<h3>Brand Identity</h3>
<i class="fas fa-arrow-right"></i>
</div>
<!-- service 3 -->
<div class="service">
<i class="fas fa-edit"></i>
<h3>Media Planning</h3>
<i class="fas fa-arrow-right"></i>
</div>
</div>
</div>
</section>
<!-- Horizontal Line -->
<div class="h-line"></div>
<section id="about">
<div class="container">
<div class="heading line">
<h2>About</h2>
<p>WE'RE MORE THAN A DIGITAL AGENCY</p>
</div>
<!-- image grid -->
<div class="about" data-aos="fade-up">
<div class="image image1">
<img src="./images/about_01.jpg" alt="" />
<div class="image-text">
<h3 class="heading-3">Teamwork</h3>
<p>Commited and Creative</p>
</div>
</div>
<div class="image image2">
<img src="./images/about_02.jpg" alt="" />
<div class="image-text">
<h3 class="heading-3">Philosophy</h3>
<p>Trust Pays off</p>
</div>
</div>
<div class="image image2">
<img src="./images/about_03.jpg" alt="" />
<div class="image-text">
<h3 class="heading-3">Office</h3>
<p>Ikeja, Lagos</p>
</div>
</div>
</div>
<!-- ABOUT TEXT -->
<div class="about-text">
<div class="text1">
<h3 class="heading-3">Who we are</h3>
<p>
Bring to the table win-win survival strategies to ensure
proactive domination. At the end of the day, going forward will
have multiple touchpoints for offshoring.
</p>
</div>
<div class="text2">
<h3 class="heading-3">Our philosophy</h3>
<p>
A new normal that has evolved from generation X is on the runway
heading towards a streamlined cloud solution. User generated
content in real-time.
</p>
</div>
<div class="text3">
<h3 class="heading-3">How we work</h3>
<p>
Capitalize on low hanging fruit to identify a ballpark value
added activity to beta test. Override the digital divide with
additional clickthroughs from DevOps.
</p>
</div>
</div>
</div>
</section>
<!-- Horizontal Line -->
<div class="h-line"></div>
<!-- Blog section -->
<section id="blog">
<div class="container">
<div class="heading">
<h2>Latest News</h2>
<p>CHECK OUT SOME OF OUR THINKING</p>
</div>
<!-- blog articles -->
<div class="blog" data-aos="fade-up">
<div class="blog-item image">
<img src="./images/03-min.jpg" alt="" />
<div class="blog-text">
<p>DESIGN/UX</p>
<h3 class="heading-3">How to drive your customer experience</h3>
<i class="fas fa-arrow-right"></i>
</div>
</div>
<!-- blog item 2 -->
<div class="blog-item image">
<img src="./images/01-min.jpg" alt="" />
<div class="blog-text">
<p>DESIGN/UX</p>
<h3 class="heading-3">How to drive your customer experience</h3>
<i class="fas fa-arrow-right"></i>
</div>
</div>
<!-- blog item 3 -->
<div class="blog-item image">
<img src="./images/04-min.jpg" alt="" />
<div class="blog-text">
<p>DESIGN/UX</p>
<h3 class="heading-3">How to drive your customer experience</h3>
<i class="fas fa-arrow-right"></i>
</div>
</div>
</div>
</div>
</section>
<!-- contact section -->
<section id="contact">
<div class="container">
<div class="contact">
<!-- icons -->
<div class="contact-icon">
<i class="fab fa-facebook-f"></i>
<i class="fab fa-twitter"></i>
<i class="fab fa-instagram"></i>
<i class="fab fa-github"></i>
</div>
<!-- text -->
<h2>Let's Talk?</h2>
<!-- button -->
<a href="#" class="btn btn-dark">Make an enquiry!</a>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<p>2021 © LupaMagic.com</p>
</div>
</footer>
<div class="modal" id="modal">
<span class="close-modal">×</span>
<div class="modal-content">
<form action="">
<input type="text" placeholder="Search" />
<i class="fas fa-search search"></i>
</form>
</div>
</div>
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script src="script.js"></script>
</body>
</html>