-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
135 lines (127 loc) · 4.77 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
<!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="style.css">
<title>Sunnyside</title>
<!-- 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>
<nav>
<div class="navmargin">
<img id="logo" src="./images/logo.svg" alt="">
<img src="./images/hamburgermenu.svg" alt="" id="hamburger-menu">
<div id="dropdown" class="hidden">
<ul>
<li><a href="">About</a></li>
<li><a href="">Services</a></li>
<li><a href="">Projects</a></li>
<li class="button"><a href="">Contact</a></li>
</ul>
</div>
<ul id=desktop-nav>
<li><a href="">About</a></li>
<li><a href="">Services</a></li>
<li><a href="">Projects</a></li>
<li class="end"><a href="" class="button">Contact</a></li>
</ul>
</div>
</nav>
<section id="hero">
<h1>We Are Creatives</h1>
<img src="./images/icon-arrow-down.svg" alt="">
</section>
<section id="grid">
<article class="art1">
<div>
<h2>Transform your brand</h2>
<br>
<p class="grey">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>
<br>
<a class="underline yellow" href="">Learn more</a>
</div>
</article>
<article class="art2">
<img src="./images/desktop/image-transform.jpg" alt="Egg on Yellow Background">
</article>
<article class="art3">
<img src="./images/desktop/image-stand-out.jpg" alt="Egg on Yellow Background">
</article>
<article class="art4">
<div>
<h2>Stand out to the right audience</h2>
<br>
<p class="grey">Using a collaborative formula of designers, researchers, photographers, videographers, and copywriters, we’ll build and extend your brand in digital places.</p>
<br>
<a class="underline red" href="">Learn more</a>
</div>
</article>
<article id="graphic-design" class="art5">
<div>
<h2>Graphic design</h2>
<br>
<p>Great design makes you memorable. We deliver artwork that underscores your brand message and captures potential clients’ attention.</p>
</div>
</article>
<article id="photography" class="art6">
<div>
<h2>Photography</h2>
<br>
<p>Increase your credibility by getting the most stunning, high-quality photos that improve your business image.</p>
</div>
</article>
</section>
<section id="testimonials">
<h2 id="testimonials-title">Client Testimonials</h2>
<div class="cardmargin">
<article class="card">
<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>
<h2>Emily R.</h2>
<p class="subtext">Marketing Director</p>
</article>
<article class="card">
<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>
<h2>Thomas S.</h2>
<p class="subtext">Chief Operating Officer</p>
</article>
<article class="card">
<img src="./images/image-jennie.jpg" alt="">
<p>Incredible end result! Our sales increased over 400% when we worked with Sunnyside. Highly recommended!</p>
<h2>Jennie F.</h2>
<p class="subtext">Business Owner</p>
</article>
</div>
</section>
<section id="image-banner">
<img src="./images/desktop/image-gallery-milkbottles.jpg" alt="">
<img src="./images/desktop/image-gallery-orange.jpg" alt="">
<img src="./images/desktop/image-gallery-cone.jpg" alt="">
<img src="./images/desktop/image-gallery-sugarcubes.jpg" alt="">
</section>
<section id="footer">
<img id="footer-image" src="./images/footer-logo.svg" alt="">
<div>
<a href="">About</a>
<a href="">Services</a>
<a href="">Projects</a>
</div>
<br>
<div id="logo-container">
<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>
</section>
<script src="./js/dropdown.js"></script>
</body>
</html>