-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
180 lines (166 loc) · 5.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Agency Landing Page</title>
<!-- css link -->
<link rel="stylesheet" href="style.css" />
<!-- fav icon link -->
<link
rel="shortcut icon"
href="images/favicon-32x32.png"
type="image/x-icon"
/>
<!-- aios animation -->
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
</head>
<body>
<!-- header section start -->
<header>
<div class="container">
<div class="menubar">
<div class="logo">
<img src="images/logo.svg" alt="SunnySide Agency Logo" />
</div>
<nav>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Projects</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
<div class="headertext">
<h1>We are creatives</h1>
<img
src="images/icon-arrow-down.svg"
alt="Arrwo Icon"
class="bounce-top"
/>
</div>
</div>
</header>
<!-- header section end -->
<main>
<!-- brad transform section start -->
<section class="brandtransform" data-aos="fade-up">
<div class="brandtext">
<h2>Transform your brand</h2>
<p>
We are a full-service creative agency specialized in helping brands
grow fast. Engage your clients through compelling visuals that do
most of the marketing for you
</p>
<a href="#">Learn More</a>
</div>
<div class="brandimg"></div>
</section>
<!-- brad transform section end -->
<!-- audience section start -->
<section class="audiencesection" data-aos="fade-up">
<div class="audience"></div>
<div class="brandtext">
<h2>Stand out to the right audience</h2>
<p>
Using a collaborative formula of designers, researchers,
photographers, videographers, and copywriters, we'll build and
extend your brand in digital places.
</p>
<a href="#">Learn More</a>
</div>
</section>
<!-- audience section end -->
<!-- graphic & photography section start -->
<section class="graphicsection" data-aos="fade-up">
<div class="grphic">
<h3>Graphic Design</h3>
<p>
Great design makes you memorable. We deliver artwork that
underscores your brand message and captures potential clients'
attention.
</p>
</div>
<div class="photography">
<h3>Photography</h3>
<p>
Increase your credibility by getting the most stunning, high-quality
photos that improve your business image.captures potential clients'
attention.
</p>
</div>
</section>
<!-- graphic & photography section end -->
<!-- testimonial section start -->
<section class="testimonialsection">
<h3>Client Testimonials</h3>
<div class="testimonialwrapper">
<div class="testimonial" data-aos="fade-left">
<img src="images/image-emily.jpg" alt="Emily" />
<h4>
We put our trust in Sunnyside and they delivered, making sure our
needs were met and deadlines were always hit.
</h4>
<span>Emily R.</span>
<h6>Marketing Director</h6>
</div>
<div class="testimonial" data-aos="fade-left">
<img src="images/image-thomas.jpg" alt="Thomas" />
<h4>
Sunnyside's enthusiasm coupled with their keen interest in our
brand's success made it a satisfying and enjoyable experience.
</h4>
<span>Thomas S.</span>
<h6>Chief Operating Officer</h6>
</div>
<div class="testimonial" data-aos="fade-left">
<img src="images/image-jennie.jpg" alt="Jennie" />
<h4>
Incredible end result! Our sales increased over 400% when we
worked with Sunnyside. Highly recommended!
</h4>
<span>Jennie F.</span>
<h6>Business Owner</h6>
</div>
</div>
</section>
<!-- testimonial section end -->
<!-- portfolio images section start -->
<section class="portfolioimage">
<img
src="images/desktop/image-gallery-milkbottles.jpg"
alt="Milk Bottle"
/>
<img src="images/desktop/image-gallery-orange.jpg" alt="Orange" />
<img src="images/desktop/image-gallery-cone.jpg" alt="Cone" />
<img src="images/desktop/image-gallery-sugarcubes.jpg" alt="Sugar" />
</section>
<!-- portfolio images section end -->
</main>
<!-- footer section start -->
<footer>
<h3>Sunnyside</h3>
<nav class="footernav">
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Projects</a></li>
</ul>
</nav>
<div class="socialmedia">
<a href="#"><img src="images/icon-facebook.svg" alt="Facebook" /></a>
<a href="#"><img src="images/icon-instagram.svg" alt="Instagram" /></a>
<a href="#"><img src="images/icon-twitter.svg" alt="Twitter" /></a>
<a href="#"><img src="images/icon-pinterest.svg" alt="Pinterest" /></a>
</div>
</footer>
<!-- footer section end -->
<script src="https://unpkg.com/aos@next/dist/aos.js"></script>
<script>
AOS.init({
duration: 1200,
});
</script>
</body>
</html>