-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
319 lines (290 loc) · 11 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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap"
rel="stylesheet"
/>
<title>Creative Agency Landing Page by luisfalconmx</title>
</head>
<body>
<header class="header">
<img src="/images/logo.svg" alt="#" class="header__logo" />
<nav class="header__nav">
<ul class="header__list">
<li class="header__item">
<a href="#" class="header__link">
<b>Home</b>
</a>
</li>
<li class="header__item">
<a class="header__link" href="#">About</a>
</li>
<li class="header__item">
<a class="header__link" href="#">Services</a>
</li>
<li class="header__item">
<a class="header__link" href="#">Projects</a>
</li>
</ul>
</nav>
<button class="header__menu">
<img src="/icons/icon-menu.svg" alt="#" />
</button>
<button class="header__button">Contact Us</button>
</header>
<section class="hero">
<h1 class="hero__title">Make your dream business goal come true</h1>
<p class="hero__description">
when you need us for improve your business, then come with us to help
your business have reach it, you just sit and feel that goal.
</p>
<button class="hero__button">Start Project</button>
<picture class="hero__picture">
<source
media="(min-width: 768px)"
srcset="images/hero-image-desktop.png"
/>
<img
class="hero__image"
src="images/hero-image-mobile.png"
alt="Creative agency"
/>
</picture>
</section>
<section class="about">
<span class="about__caption">About us</span>
<h2 class="about__title">Our Teammate</h2>
<div class="about__container">
<div class="about__content">
<p class="about__description">
We move with make a Creative Strategy for help your business goal,
we help to improve your income by a services we have. make your
content look interesting and make people look for your business2
<br /><br />
We move with make a Creative Strategy for help your business goal,
we help to improve your income by a services we have. make your
content look interesting and make people look for your business
</p>
<div class="about__buttons">
<button class="about__button">About Us</button>
<button class="about__button about__button--outline">
<img src="/icons/icon-play-circle.svg" />
Our history
</button>
</div>
</div>
<picture class="hero__picture">
<source
media="(min-width: 768px)"
srcset="/images/about-desktop.png"
/>
<img src="/images/about-mobile.png" alt="#" class="about__image" />
</picture>
</div>
</section>
<section class="services">
<div>
<span class="services__caption">Our services</span>
<h2 class="services__title">Perfect and Fast Movement</h2>
<p class="services__description">
We move with make a Creative Strategy for help your business goal, we
help to improve your income by a services we have. make your content
look interesting and make people look for your business
</p>
<a class="services__link"> Read more -> </a>
</div>
<div class="services__cards">
<div class="services__card">
<div class="services__card-icon services__card-icon--blue">
<img src="/icons/icon-monitor.svg" alt="#" />
</div>
<h3 class="services__card-title">Social Media Management</h3>
</div>
<div class="services__card">
<div class="services__card-icon services__card-icon--red">
<img src="/icons/icon-settings.svg" alt="#" />
</div>
<h3 class="services__card-title">Search Engine Opimization</h3>
</div>
<div class="services__card">
<div class="services__card-icon services__card-icon--green">
<img src="/icons/icon-pen-tool.svg" alt="#" />
</div>
<h3 class="services__card-title">Design</h3>
</div>
<div class="services__card">
<div class="services__card-icon services__card-icon--yellow">
<img src="/icons/icon-tv.svg" alt="#" />
</div>
<h3 class="services__card-title">Ads</h3>
</div>
</div>
</section>
<section class="portfolio">
<span class="portfolio__caption">Our Portfolio</span>
<h2 class="portfolio__title">What do we do</h2>
<p class="portfolio__description">
all projects that we have already done, proven can help to use more
comfortable, then can used by client from our business
</p>
<div class="portfolio__cards">
<div class="portfolio__card portfolio__card--furniture">
<img
src="/images/design-furniture-app.jpg"
alt="#"
class="portfolio__card-image"
/>
<p class="portfolio__card-title">Design Furniture App</p>
</div>
<div class="portfolio__card portfolio__card--cloud">
<img
src="/images/cloud-app.jpg"
alt="#"
class="portfolio__card-image"
/>
<p class="portfolio__card-title">Cloud App</p>
</div>
<div class="portfolio__card portfolio__card--byte">
<img
src="/images/design-byte-app.jpg"
alt="#"
class="portfolio__card-image"
/>
<p class="portfolio__card-title">Design Byte App</p>
</div>
</div>
<button class="portfolio__button">See All Portfolio</button>
</section>
<section class="testimonial">
<span class="testimonial__caption">Testimonial</span>
<h2 class="testimonial__title">People Talk about us</h2>
<div class="testimonial__cards">
<div class="testimonial__card">
<div class="testimonial__card-container">
<img
src="/images/user.jpg"
alt="#"
class="testimonial__card-image"
/>
<div>
<span class="testimonial__card-username">Angel Rose</span>
<p class="testimonial__card-position">Creative Manager</p>
</div>
</div>
<p class="testimonial__card-description">
“Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem
ipsum dolor sit amet, consectetur adipiscing elit”
</p>
</div>
<div class="testimonial__card">
<div class="testimonial__card-container">
<img
src="/images/user.jpg"
alt="#"
class="testimonial__card-image"
/>
<div>
<span class="testimonial__card-username">Angel Rose</span>
<p class="testimonial__card-position">Creative Manager</p>
</div>
</div>
<p class="testimonial__card-description">
“Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem
ipsum dolor sit amet, consectetur adipiscing elit”
</p>
</div>
<div class="testimonial__card">
<div class="testimonial__card-container">
<img
src="/images/user.jpg"
alt="#"
class="testimonial__card-image"
/>
<div>
<span class="testimonial__card-username">Angel Rose</span>
<p class="testimonial__card-position">Creative Manager</p>
</div>
</div>
<p class="testimonial__card-description">
“Lorem ipsum dolor sit amet, consectetur adipiscing elit. Lorem
ipsum dolor sit amet, consectetur adipiscing elit”
</p>
</div>
</div>
</section>
<section class="collaboration">
<picture class="collaboration__picture">
<source
media="(min-width: 768px)"
srcset="/images/collaboration-desktop.png"
/>
<img
src="/images/collaboration-mobile.png"
alt="#"
class="collaboration__image"
/>
</picture>
<div class="collaboration__content">
<h2 class="collaboration__title">Interesting Collaboration With Us?</h2>
<p class="collaboration__description">
Help you to reach your business goal
</p>
<button class="collaboration__button">Get Started</button>
</div>
</section>
<footer class="footer">
<div class="footer__container">
<div class="footer__brand">
<img src="/images/logo.svg" alt="#" class="footer__logo" />
</div>
<nav class="footer__nav">
<ul class="footer__list">
<li class="footer__item"><b>Terms & policies</b></li>
<li class="footer__item">Terms of Service</li>
<li class="footer__item">Privacy Policy</li>
</ul>
<ul class="footer__list">
<li class="footer__item"><b>Company</b></li>
<li class="footer__item">Home</li>
<li class="footer__item">About Us</li>
<li class="footer__item">Contact Us</li>
</ul>
<ul class="footer__list">
<li class="footer__item"><b>Contact</b></li>
<li class="footer__item">(+62) 893912392</li>
<li class="footer__item">[email protected]</li>
</ul>
</nav>
<div class="footer__localization">
<b class="footer__localization-title">Location</b>
<p class="footer__localization-text">
PT Osiris Real Estate Internasional
</p>
<p class="footer__localization-text">
Jl. KH. Wahid Hasyim Kel No.10D
</p>
<p class="footer__localization-text">Jakarta, Indonesia</p>
<p class="footer__localization-text">[email protected]</p>
</div>
</div>
<div class="footer__social">
<img src="/icons/icon-facebook.svg" alt="#" />
<img src="/icons/icon-instagram.svg" alt="#" />
<img src="/icons/icon-linkedin.svg" alt="#" />
<img src="/icons/icon-email.svg" alt="#" />
<img src="/icons/icon-twitter.svg" alt="#" />
</div>
<hr class="footer__divider" />
<p class="footer__leyend">
Copyright @ 2022 Agency Creative. All Right Reserved
</p>
</footer>
<script type="module" src="./main.js"></script>
</body>
</html>