-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgraphic.html
149 lines (120 loc) · 5.11 KB
/
graphic.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href = "graphic.css" />
</head>
<body>
<header>
<nav class="nav-bar">
<a href="index2.html"><img src="https://clement-baradel-designo.vercel.app/assets/shared/desktop/logo-dark.png"
class="nav-logo" alt="LOGO"></a>
<ul class="nav-menu">
<li class="nav-item">
<a href="company.html" class="nav-link">OUR COMPANY</a>
</li>
<li class="nav-item">
<a href="locations.html" class="nav-link">LOCATIONS</a>
</li>
<li class="nav-item">
<a href="contact.html" class="nav-link">CONTACT</a>
</li>
</ul>
</nav>
<div class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</div>
</header>
<br><br><br><br><br>
<section class="section1">
<div class="box">
<h1>Graphic Design</h1>
<p>We deliver eye-catching branding materials that are tailored to meet your business objectives.</p>
</div>
</section>
<br><br><br><br><br><br><br><br><br><br>
<section class="section2">
<div class="box2">
<img src="https://clement-baradel-designo.vercel.app/assets/graphic-design/desktop/image-change.jpg" alt="image" />
<h3>TIM BROWN</h3>
<p>A book cover designed for Tim Brown’s new release, ‘Change’</p>
</div>
<div class="box2">
<img src="https://clement-baradel-designo.vercel.app/assets/graphic-design/desktop/image-boxed-water.jpg" alt="image" />
<h3>BOXED WATER</h3>
<p> A simple packaging concept made for Boxed Wate</p>
</div>
<div class="box2">
<img src="https://clement-baradel-designo.vercel.app/assets/graphic-design/desktop/image-science.jpg" alt="image" />
<h3>SCIENCE!</h3>
<p> A poster made in collaboration with the Federal Art Project</p>
</div>
</section>
<br><br><br><br><br>
<section class="section4">
<div class="box5">
<h1>Let’s talk about your project</h1>
<div class="inline1">
<p>Ready to take it to the next level? Contact us today and find out how our expertise<br> can help your
business grow.</p>
<div class="btn">
<a href="contact.html">
<button>Get In Touch</button>
</a>
</div>
</div>
<br>
</div>
</section>
<br><br><br><br><br><br><br>
<footer>
<div class="footer1">
<div class="nav-menu">
<a href="#"><img src="https://clement-baradel-designo.vercel.app/assets/shared/desktop/logo-light.png"
class="nav-logo" alt="LOGO"></a>
<div class="nav-item">
<ul class="nav-menu nav-menu2">
<li class="nav-item">
<a href="#" class="nav-link1">OUR COMPANY</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link1">LOCATIONS</a>
</li>
<li class="nav-item">
<a href="#" class="nav-link1">CONTACT</a>
</li>
</ul>
</div>
</div>
<br><br><br>
<div class="footer2">
<div class="second">
<p>Designo Central Office</p>
<p> 3886 Wellington Street</p>
<p>Toronto, Ontario M9C 3J</p>
</div>
<div class="second">
<p>
Contact Us (Central Office)
</p>
<p>P : +1 253-863-8967</p>
<p> M : [email protected]</p>
</div>
<div class="second">
<img src="https://clement-baradel-designo.vercel.app/assets/shared/desktop/icon-facebook.svg" alt="image" />
<img src="https://clement-baradel-designo.vercel.app/assets/shared/desktop/icon-youtube.svg" alt="image" />
<img src="https://clement-baradel-designo.vercel.app/assets/shared/desktop/icon-twitter.svg" alt="image" />
<img src="https://clement-baradel-designo.vercel.app/assets/shared/desktop/icon-pinterest.svg" alt="image" />
<img src="https://clement-baradel-designo.vercel.app/assets/shared/desktop/icon-instagram.svg" alt="image" />
</div>
</div>
</footer>
</footer>
<script src="script.js"></script>
</body>
</html>