-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
309 lines (287 loc) · 12.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<!-- Google Fonts -->
<style>
@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@600&family=Fraunces:wght@700;900&display=swap");
</style>
<link rel="stylesheet" href="css/style.css" />
<title>Sunnyside Agency</title>
</head>
<body>
<!-- Header Section -->
<header class="header">
<div class="header__container">
<div class="header__top">
<img class="header__logo" src="images/logo.svg" alt="Sunnyside" />
<!-- for desktop -->
<nav id="navDesktop">
<ul class="nav">
<li class="nav__item"><a href="#">About</a></li>
<li class="nav__item"><a href="#">Services</a></li>
<li class="nav__item"><a href="#">Projects</a></li>
<li class="nav__item">
<a href="#"><button class="btn">Contact</button></a>
</li>
</ul>
</nav>
<!-- Checkbox for toggle menu -->
<div class="navburger">
<input
type="checkbox"
class="navburger__checkbox"
id="toggle-menu"
/>
<label for="toggle-menu" class="navburger__button">
<div class="navburger__icon"></div>
</label>
<!-- Hidden Menu DIV -->
<!-- for mobile -->
<ul class="nav-mobile">
<li class="nav-mobile__item"><a href="#">About</a></li>
<li class="nav-mobile__item"><a href="#">Services</a></li>
<li class="nav-mobile__item"><a href="#">Projects</a></li>
<li class="nav-mobile__item">
<a href="#"><button class="btn btn--mobile">Contact</button></a>
</li>
</ul>
</div>
</div>
<h1 class="header__heading">we are creatives</h1>
<img
src="images/icon-arrow-down.svg"
alt="Arrow Down"
class="header__arrow"
/>
</div>
</header>
<div class="container">
<!-- Main Content -->
<main class="main">
<div class="box box--white">
<div class="box__content">
<h2 class="box__title">Transform your brand</h2>
<p class="box__text">
We are a full-service creative agency specializing in helping
brands grow fast. Engage your clients through compelling visuals
that do most of the marketing for you.
</p>
<a href="#" class="box__link box__link--yellow">learn more</a>
</div>
</div>
<div class="box box--order">
<picture>
<source
media="(max-width:376px)"
srcset="images/mobile/image-transform.jpg"
/>
<img src="images/desktop/image-transform.jpg" alt="Transform" />
</picture>
</div>
<div class="box">
<picture>
<source
media="(max-width:376px)"
srcset="images/mobile/image-stand-out.jpg"
/>
<img src="images/desktop/image-stand-out.jpg" alt="Stand-out" />
</picture>
</div>
<div class="box box--white">
<div class="box__content box__content--right">
<h2 class="box__title">Stand out to the right audience</h2>
<p class="box__text">
Using a collaborative formula of designers, researchers,
photographers, videographers, and copywriters, we’ll build and
extend your brand in digital places.
</p>
<a href="#" class="box__link box__link--red">learn more</a>
</div>
</div>
<!-- Last 2 box for Services -->
<figure class="services services--cyan">
<picture>
<source
media="(max-width:376px)"
srcset="images/mobile/image-graphic-design.jpg"
/>
<img
src="images/desktop/image-graphic-design.jpg"
alt="Graphic Design"
/>
</picture>
<figcaption class="services__content">
<h3 class="services__title">Graphic Design</h3>
<p class="services__text">
Great design makes you memorable. We deliver artwork that
underscores your brand message and captures potential clients’
attention.
</p>
</figcaption>
</figure>
<figure class="services services--blue">
<picture>
<source
media="(max-width:376px)"
srcset="images/mobile/image-photography.jpg"
/>
<img src="images/desktop/image-photography.jpg" alt="Photography" />
</picture>
<figcaption class="services__content">
<h3 class="services__title">Photography</h3>
<p class="services__text">
Increase your credibility by getting the most stunning,
high-quality photos that improve your business image.
</p>
</figcaption>
</figure>
<!-- Testimonials -->
<section class="testimonials">
<h3 class="testimonials__title">client testimonials</h3>
<div class="testimonials__block">
<div class="testimonials__item">
<img
class="testimonials__avatar"
src="images/image-emily.jpg"
alt="Emily"
/>
<p class="testimonials__text">
We put our trust in Sunnyside and they delivered, making sure
our needs were met and deadlines were always hit.
</p>
<p class="testimonials__author">
Emily R. <span>Marketing Director</span>
</p>
</div>
<div class="testimonials__item">
<img
class="testimonials__avatar"
src="images/image-thomas.jpg"
alt="Thomas"
/>
<p class="testimonials__text">
Sunnyside’s enthusiasm coupled with their keen interest in our
brand’s success made it a satisfying and enjoyable experience.
</p>
<p class="testimonials__author">
Thomas S. <span>Chief Operating Officer</span>
</p>
</div>
<div class="testimonials__item">
<img
class="testimonials__avatar"
src="images/image-jennie.jpg"
alt="Jennie"
/>
<p class="testimonials__text">
Incredible end result! Our sales increased over 400% when we
worked with Sunnyside. Highly recommended!
</p>
<p class="testimonials__author">
Jennie F. <span>Business Owner</span>
</p>
</div>
</div>
</section>
<!-- Section Gallery -->
<div class="gallery">
<picture>
<source
media="(max-width:376px)"
srcset="images/mobile/image-gallery-milkbottles.jpg"
/>
<img
src="images/desktop/image-gallery-milkbottles.jpg"
alt="Milk Bottles"
/>
</picture>
<picture>
<source
media="(max-width:376px)"
srcset="images/mobile/image-gallery-orange.jpg"
/>
<img
src="images/desktop/image-gallery-orange.jpg"
alt="Orange Slice"
/>
</picture>
<picture>
<source
media="(max-width:376px)"
srcset="images/mobile/image-gallery-cone.jpg"
/>
<img
src="images/desktop/image-gallery-cone.jpg"
alt="Ice Cream Cone"
/>
</picture>
<picture>
<source
media="(max-width:376px)"
srcset="images/mobile/image-gallery-sugarcubes.jpg"
/>
<img
src="images/desktop/image-gallery-sugarcubes.jpg"
alt="Sugar Cubes"
/>
</picture>
</div>
</main>
</div>
<!-- Footer -->
<footer class="footer">
<img class="footer__logo" src="images/logo-footer.svg" alt="Sunnyside" />
<ul class="footer__nav">
<li class="footer__nav-items"><a href="#"> About</a></li>
<li class="footer__nav-items"><a href="#"> Services</a></li>
<li class="footer__nav-items"><a href="#"> Projects</a></li>
</ul>
<div class="footer__social">
<a class="social__link" href="#" aria-label="Facebook">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path
d="M18.896 0H1.104C.494 0 0 .494 0 1.104v17.793C0 19.506.494 20 1.104 20h9.58v-7.745H8.076V9.237h2.606V7.01c0-2.583 1.578-3.99 3.883-3.99 1.104 0 2.052.082 2.329.119v2.7h-1.598c-1.254 0-1.496.597-1.496 1.47v1.928h2.989l-.39 3.018h-2.6V20h5.098c.608 0 1.102-.494 1.102-1.104V1.104C20 .494 19.506 0 18.896 0z"
fill="#2C7566"
fill-rule="nonzero"
/>
</svg>
</a>
<a class="social__link" href="#" aria-label="Instagram">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path
d="M10 1.802c2.67 0 2.987.01 4.042.059 2.71.123 3.975 1.409 4.099 4.099.048 1.054.057 1.37.057 4.04 0 2.672-.01 2.988-.057 4.042-.124 2.687-1.387 3.975-4.1 4.099-1.054.048-1.37.058-4.041.058-2.67 0-2.987-.01-4.04-.058-2.718-.124-3.977-1.416-4.1-4.1-.048-1.054-.058-1.37-.058-4.041 0-2.67.01-2.986.058-4.04.124-2.69 1.387-3.977 4.1-4.1 1.054-.048 1.37-.058 4.04-.058zM10 0C7.284 0 6.944.012 5.877.06 2.246.227.227 2.242.061 5.877.01 6.944 0 7.284 0 10s.012 3.057.06 4.123c.167 3.632 2.182 5.65 5.817 5.817 1.067.048 1.407.06 4.123.06s3.057-.012 4.123-.06c3.629-.167 5.652-2.182 5.816-5.817.05-1.066.061-1.407.061-4.123s-.012-3.056-.06-4.122C19.777 2.249 17.76.228 14.124.06 13.057.01 12.716 0 10 0zm0 4.865a5.135 5.135 0 100 10.27 5.135 5.135 0 000-10.27zm0 8.468a3.333 3.333 0 110-6.666 3.333 3.333 0 010 6.666zm5.338-9.87a1.2 1.2 0 100 2.4 1.2 1.2 0 000-2.4z"
fill="#2C7566"
fill-rule="nonzero"
/>
</svg>
</a>
<a class="social__link" href="#" aria-label="Twitter">
<svg width="20" height="17" xmlns="http://www.w3.org/2000/svg">
<path
d="M20 2.172a8.192 8.192 0 01-2.357.646 4.11 4.11 0 001.805-2.27 8.22 8.22 0 01-2.606.996A4.096 4.096 0 0013.847.248c-2.65 0-4.596 2.472-3.998 5.037A11.648 11.648 0 011.392 1a4.109 4.109 0 001.27 5.478 4.086 4.086 0 01-1.858-.513c-.045 1.9 1.318 3.679 3.291 4.075a4.113 4.113 0 01-1.853.07 4.106 4.106 0 003.833 2.849A8.25 8.25 0 010 14.658a11.616 11.616 0 006.29 1.843c7.618 0 11.923-6.434 11.663-12.205A8.354 8.354 0 0020 2.172z"
fill="#2C7566"
fill-rule="nonzero"
/>
</svg>
</a>
<a class="social__link" href="#" aria-label="Pinterest">
<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg">
<path
d="M10 0C4.477 0 0 4.477 0 10c0 4.237 2.636 7.855 6.356 9.312-.088-.791-.167-2.005.035-2.868.181-.78 1.172-4.97 1.172-4.97s-.299-.6-.299-1.486c0-1.39.806-2.428 1.81-2.428.852 0 1.264.64 1.264 1.408 0 .858-.546 2.14-.828 3.33-.236.995.5 1.807 1.48 1.807 1.778 0 3.144-1.874 3.144-4.58 0-2.393-1.72-4.068-4.176-4.068-2.845 0-4.516 2.135-4.516 4.34 0 .859.331 1.781.745 2.281a.3.3 0 01.069.288l-.278 1.133c-.044.183-.145.223-.335.134-1.249-.581-2.03-2.407-2.03-3.874 0-3.154 2.292-6.052 6.608-6.052 3.469 0 6.165 2.473 6.165 5.776 0 3.447-2.173 6.22-5.19 6.22-1.013 0-1.965-.525-2.291-1.148l-.623 2.378c-.226.869-.835 1.958-1.244 2.621.937.29 1.931.446 2.962.446 5.523 0 10-4.477 10-10S15.523 0 10 0z"
fill="#2C7566"
fill-rule="nonzero"
/>
</svg>
</a>
</div>
</footer>
</body>
</html>