-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
166 lines (116 loc) · 5.48 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
<!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>
<header>
<h2 class="header__logo">sunnyside</h2>
<nav class="header__nav">
<ul class="header__menu">
<li><a href="#about-us" class="nav-link">About</a></li>
<li><a href="#services" class="nav-link">Services</a></li>
<li><a href="#testimonials" class="nav-link">Projects</a></li>
<li><a href="https://twitter.com/oluseguncodes"><button>Contact</button></a></li>
</ul>
</nav>
<div class="header__menu-mobile">
<img src="./images/icon-hamburger.svg" alt="hamburger-menu">
</div>
</header>
<main>
<section id="about-us" class="about-us">
<h1 class="about-us__heading">We are creatives</h1>
<div class="about-us__image">
<img src="./images/icon-arrow-down.svg" alt="arrow-pointing-down">
</div>
</section>
<section id="services" class="services flex">
<div class="services__description flex flex-center">
<h2>Transform your brand</h2>
<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>
<h3>Learn more</h3>
</div>
<div class="services__images">
<img src="./images/desktop/image-transform.jpg" alt="white-egg-in-yellow-background">
</div>
<div class="services__images">
<img src="./images/desktop/image-stand-out.jpg" alt="pink-plastic-cup-in-pick-background">
</div>
<div class="services__description flex flex-center">
<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>
<h3>Learn more</h3>
</div>
<div class="services__niche flex flex-end">
<h2>Graphic Design</h2>
<p>Great design makes you memorable. We deliver artwork that underscores your brand message and captures potential clients’ attention.</p>
</div>
<div class="services__niche flex flex-end">
<h2>Photography</h2>
<p>Increase your credibility by getting the most stunning, high-quality photos that improve your business image.</p>
</div>
</section>
<section id="testimonials" class="flex testimonials flex-center ">
<h2>Client testimonials</h2>
<div class="client-testimonials-wrapper">
<div class="client-testimonials flex flex-center">
<img src="./images/image-emily.jpg" alt="emily">
<p>We put our trust in Sunnyside and they delivered, making sure our needs were met and deadlines were always hit.</p>
<h3>Emily R.</h3>
<p class="client-testimonials__role">Marketing Director</p>
</div>
<div class="client-testimonials flex flex-center">
<img src="./images/image-thomas.jpg" alt="thomas">
<p>Sunnyside’s enthusiasm coupled with their keen interest in our brand’s success made it a satisfying and enjoyable experience.</p>
<h3>Thomas S.</h3>
<p class="client-testimonials__role">Chief Operating Officer</p>
</div>
<div class="client-testimonials flex flex-center">
<img src="./images/image-jennie.jpg" alt="jennie">
<p>Incredible end result! Our sales increased over 400% when we worked with Sunnyside. Highly recommended!</p>
<h3>Jennie F.</h3>
<p class="client-testimonials__role">Business Owner</p>
</div>
</div>
</section>
<article class="article">
<div class="article__items">
<img src="./images/desktop/image-gallery-milkbottles.jpg" alt="milk-bottles">
</div>
<div class="article__items">
<img src="./images/desktop/image-gallery-orange.jpg" alt="orange-in-a-plate">
</div>
<div class="article__items">
<img src="./images/desktop/image-gallery-cone.jpg" alt="ice-cream-cone">
</div>
<div class="article__items">
<img src="./images/desktop/image-gallery-sugarcubes.jpg" alt="sugar-cubes">
</div>
</article>
<footer id="footer" class="footer flex flex-center">
<h1>sunnyside</h1>
<ul class="flex-center footer__nav">
<a href="#about-us"><li>About</li></a>
<a href="#services"><li>Services</li></a>
<a href="#testimonials"><li>Projects</li></a>
</ul>
<div class="footer__social-links flex-center">
<img src="./images/icon-facebook.svg" alt="facebook-icon">
<img src="./images/icon-instagram.svg" alt="instagram-icon">
<img src="./images/icon-twitter.svg" alt="twitter-icon">
<img src="./images/icon-pinterest.svg" alt="icon-pinterest">
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://twitter.com/oluseguncodes">Olusegun 👨🏾💻</a>
</div>
</footer>
</main>
<script src="./index.js"></script>
</body>
</html>