-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
186 lines (133 loc) · 4.38 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
<!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">
<link rel="stylesheet" href="./css/style.css">
<title>Frontend Mentor | Sunnyside agency landing page</title>
</head>
<body>
<!-- body -->
<header>
<nav>
<div id="nav">
<p>logo</p>
<ul>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Projects</a></li>
<li><button>Contact</button></li>
</ul>
</div>
</nav>
<div>
<h1>We are creatives</h1>
</div>
</header>
<main>
<section class="presentation">
<div class="text">
<h3>Transform your brand</h3>
<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>
<a href="#">
<h5>Learn more</h5>
</a>
</div>
<div>
<img src="./images/desktop/image-transform.jpg" alt="">
</div>
</section>
<section class="presentation">
<div>
<img src="./images/desktop/image-stand-out.jpg" alt="">
</div>
<div class="text">
<h3>Stand out to the right audience</h3>
<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="#">
<h5>Learn more</h5>
</a>
</div>
</section>
<section class="presentation">
<div class="txt1">
<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="txt2">
<h3>Photography</h3>
<p>Increase your credibility by getting the most stunning, high-quality photos that improve your business
image.</p>
</div>
</section>
<section class="team">
<h3>Client testimonials</h3>
<div>
<div>
<img src="./images/image-emily.jpg" alt="">
<p>We put our trust in Sunnyside and they delivered, making sure our needs were met and deadlines were always
hit.</p>
</div>
<div>
<h4>Emily R.</h4>
<p>Marketing Director</p>
</div>
</div>
<div>
<div>
<img src="./images/image-thomas.jpg" alt="">
<p>Sunnyside’s enthusiasm coupled with their keen interest in our brand’s success made it a satisfying and
enjoyable
experience.</p>
</div>
<div>
<h4>Thomas S.</h4>
<p>Chief Operating Officer</p>
</div>
</div>
<div>
<div>
<img src="./images/image-jennie.jpg" alt="">
<p>Incredible end result! Our sales increased over 400% when we worked with Sunnyside. Highly recommended!</p>
</div>
<div>
<h4>Jennie F.</h4>
<p>Business Owner</p>
</div>
</div>
</section>
<section class="five">
<img src="./images/desktop/image-gallery-milkbottles.jpg" alt="milk">
<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>
</main>
<footer>
<h3>sunnside</h3>
<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>
<ul>
<li><img src="./images/icon-facebook.svg" alt="facebook"></li>
<li><img src="./images/icon-instagram.svg" alt="icon-instagram"></li>
<li><img src="./images/icon-twitter.svg" alt="twitter"></li>
<li><img src="./images/icon-pinterest.svg" alt="pinterest"></li>
</ul>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Morpheous72</a>.
</div>
</footer>
</body>
</html>