-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
171 lines (149 loc) · 5.46 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Sunnyside agency landing page</title>
<link rel="stylesheet" href="style.css">
<!-- Feel free to remove these styles or customise in your own stylesheet 👍
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>-->
</head>
<body>
<div class="wrapper">
<div class="banner">
<div class="header">
<img class="logo" src="https://svgur.com/i/Zvd.svg" alt="sugar">
<div class="menu">
<span class="menu-options">About</span>
<span class="menu-options">Services</span>
<span class="menu-options">Projects</span>
<div class="contact">
contact
</div>
</div>
</div>
<div class="main">
<span class="heading">WE ARE CREATIVES</span>
<div class="arrow">
<img src="https://i.ibb.co/MSv2H70/arrow.png">
</div>
</div>
</div>
<div class="section1">
<div class="left">
<div class="text-container">
<h1>Transform your brand</h1>
<p>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>
<div class="button">
<img src="https://i.ibb.co/TB2DVgK/learnmore.png" >
</div>
</div>
</div>
<div class="right">
<img class="egg-image" src="https://i.ibb.co/D79rDCW/egg.jpg" >
</div>
</div>
<div class="section1">
<div class="right">
<img src="images/desktop/image-stand-out.jpg" >
</div>
<div class="left">
<div class="text-container">
<h1>Stand out to the right audience</h1>
<p>Using a collaborative formula of designers, researchers, photographers, videographers, and copywriters, we’ll build and extend your brand in digital places.</p>
<div class="button">
<img src="https://i.ibb.co/TB2DVgK/learnmore.png" >
</div>
</div>
</div>
</div>
<div class="section2">
<div class="left">
<img src="https://i.ibb.co/ssvvmSd/cherries.png" alt="">
</div>
<div class="right">
<img src="images/desktop/Photography-orange.png" alt="">
</div>
</div>
<div class="section3 testimonials">
<h1>CLIENT TESTIMONIALS</h1>
<div class="clients">
<div class="client">
<div class="client-image">
<img src="images/image-emily.jpg">
</div>
<p>
We put our trust in Sunnyside and they delivered,
making sure our needs were met and deadlines were always hit.
</p>
<div class="details">
<h2>Emily R.</h2>
<h4>Marketing Director</h4>
</div>
</div>
<div class="client">
<div class="client-image">
<img src="images/image-jennie.jpg">
</div>
<p>
Incredible end result! Our sales increased over 400% when we worked with Sunnyside. Highly recommended!
</p>
<div class="details">
<h2>Jennie F.</h2>
<h4>Business Owner</h4>
</div>
</div>
<div class="client">
<div class="client-image">
<img src="images/image-thomas.jpg">
</div>
<p>
We put our trust in Sunnyside and they delivered,
making sure our needs were met and deadlines were always hit.
</p>
<div class="details">
<h2>Thomas S.</h2>
<h4>Chief Operating Officer</h4>
</div>
</div>
</div>
</div>
<div class="section4 examples">
<div class="example-container">
<img src="images/desktop/image-gallery-milkbottles.jpg" alt="">
</div>
<div class="example-container">
<img src="images/desktop/image-gallery-orange.jpg" alt="">
</div>
<div class="example-container">
<img src="images/desktop/image-gallery-cone.jpg" alt="">
</div>
<div class="example-container">
<img src="images/desktop/image-gallery-sugarcubes.jpg" alt="">
</div>
</div>
<div class="footer">
<div>
<img class="logo" src="https://svgur.com/i/Zvd.svg" alt="">
</div>
<div class="footer-navigation">
<span>About</span>
<span>Services</span>
<span>Projects</span>
</div>
<div class="socail-media">
<img src="images/icon-facebook.svg" alt="">
<img src="images/icon-instagram.svg" alt="">
<img src="images/icon-twitter.svg" alt="">
<img src="images/icon-pinterest.svg" alt="">
</div>
</div>
</div>
</body>
</html>