-
Notifications
You must be signed in to change notification settings - Fork 0
/
work.html
277 lines (261 loc) · 7.45 KB
/
work.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
<!DOCTYPE html>
<html lang="en">
<head id="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" />
<meta
name="description"
content="A multi page Portfolio website for babboeCodes, built with HTML, CSS and JavaScript(Vanilla),"
/>
<title>Works | babboeCodes</title>
<link
rel="shortcut icon"
sizes="52x52"
href="./assets/images/memoji_Image.png"
type="image/x-icon"
/>
<link type="text/css" rel="stylesheet" href="./assets/styles/style.css" />
<link
type="text/css"
rel="stylesheet"
href="./assets/styles/contact.css"
/>
<link type="text/css" rel="stylesheet" href="./assets/styles/work.css" />
<!-- <link type="text/css" rel="stylesheet" href="./assets/styles/dark-mode.css"> -->
<script src="./assets/script/app.js" defer></script>
<script src="./assets/script/work.js" defer></script>
<style>
.main-section--title__main {
width: 100%;
max-width: 24rem;
}
</style>
</head>
<body id="body-content--home">
<!-- code for header section -->
<header id="header">
<!-- container for logo image -->
<div class="image-logo">
<a href="index.html"
><img
src="./assets/images/Logo.png"
alt="Logo"
class="image-logo__image"
/></a>
</div>
<!-- nav bar section code -->
<nav id="nav-bar">
<!-- nav bar item list -->
<ul class="nav-bar__list">
<li
onmouseover="magicLine('magic-line-left1')"
class="nav-bar__item"
>
<a href="index.html" class="nav-bar__link">Home</a>
</li>
<li
onmouseover="magicLine('magic-line-left2')"
class="nav-bar__item"
>
<a href="work.html" class="nav-bar__link active">Works</a>
</li>
<li
onmouseover="magicLine('magic-line-left3')"
class="nav-bar__item"
>
<a href="contact.html" class="nav-bar__link">Contact</a>
</li>
</ul>
<div class="nav-bar__list--after"></div>
<!-- container for menu button -->
<div class="menu-btn">
<img
src="./assets/images/icons/icon-hamburger.svg"
alt="open menu"
class="open-menu"
/>
<img
src="./assets/images/icons/icon-close.svg"
alt="close menu"
class="close-menu hidden"
/>
</div>
<!-- modals -->
<button id="backdrop"></button>
<div id="menu-modal" class="Modal">
<div class="menu-opt">
<div>
<ul class="ModalList">
<li class="nav-bar__item">
<a class="nav-bar__link" href="index.html">home</a>
</li>
<li class="nav-bar__item">
<a class="nav-bar__link active" href="work.html"
>works</a
>
</li>
<li class="nav-bar__item">
<a class="nav-bar__link" href="contact.html"
>contact</a
>
</li>
</ul>
</div>
<a href="#" class="menu-pic">
<img src="./assets/images/previews/menu-pic.png" alt="" />
</a>
</div>
</div>
</nav>
<div id="light-dark" class="light-mode"></div>
</header>
<main id="main">
<!--container for main section title -->
<section class="main-section--title">
<h1 class="">
<span class="main-section--title__sub">
<span class="home-text">HOME</span> / WORKS
</span>
<div class="main-section--title__main">My Awesome Projects</div>
</h1>
<div class="cartoon-pic">
<img
src="./assets/images/previews/leGNIwyP_male_2_cartoon20.png"
alt=""
/>
</div>
</section>
<!-- container for main section content -->
<section
id="project-section"
class="main-section--project-content"
></section>
<!-- container for message section -->
<section class="message-section visible">
<div class="message-section__content visible">
<h3 class="message-section--title">
<label for="email-id">Let's create something together!</label>
</h3>
<!-- create form -->
<form action="" class="message-section--form">
<input
type="email"
name="email-id"
placeholder="Enter your email"
id="email-id"
pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$"
required
/>
<!-- submit button -->
<input id="submit" type="submit" value="Be my friend" />
</form>
</div>
<div class="cartoon-pic2 visible">
<img src="./assets/images/previews/cartoon-pic2.png" alt="" />
</div>
</section>
<!-- random shapes -->
<div class="random-shapes">
<div class="shape rectangle"></div>
<div class="shape rounded"></div>
<div class="shape bottom"></div>
<div class="shape circle"></div>
<div class="shape triangle"></div>
<div class="shape diamond"></div>
<div class="shape parallelogram"></div>
<div class="shape rectangle1"></div>
<div class="shape rounded1"></div>
<div class="shape triangle1"></div>
</div>
</main>
<!-- code for footer section -->
<footer id="footer">
<!-- modal pop up for message -->
<div class="gratitude">
<div class="gratitude__image-box">
<img
src="./assets/images/previews/thank-you-emoji-16.jpg"
alt="Logo"
class="gratitude__image"
/>
</div>
<p class="gratitude__text">
Thank you for Sending a message 🙏<br />
we Promise to reach out to you as soon as possible
</p>
<div class="gratitude__btn-box">
<button class="gratitude__button" type="submit">Got It!</button>
</div>
</div>
<!-- container for footer content -->
<div class="footer-content">
<!-- container for logo image -->
<div class="image-logo">
<a href="index.html"
><img
src="./assets/images/Logo.png"
alt="Logo"
class="image-logo__image"
/></a>
</div>
<div class="footer-section-content">
<!-- container for footer list items -->
<ul class="footer__list">
<li class="footer-list__item">
<a href="index.html" class="footer-item__link">Home</a>
</li>
<li class="footer-list__item">
<a href="work.html" class="footer-item__link">Works</a>
</li>
<li class="footer-list__item">
<a href="contact.html" class="footer-item__link"
>Contact</a
>
</li>
</ul>
<!-- container for social media icons -->
<div class="social-media">
<a
href="https://github.com/babboe1"
class="social-media__link"
><img
src="./assets/images/icons/github.svg"
alt="Github"
class="social-media__image"
/></a>
<a
href="https://www.linkedin.com/in/abiola-ayodele-5a10651b7/"
class="social-media__link"
><img
src="./assets/images/icons/linkedIn.svg"
alt="linkedin"
class="social-media__image"
/></a>
<a
href="https://twitter.com/ausstinab"
class="social-media__link"
><img
src="./assets/images/icons/twitter.svg"
alt="twitter"
class="social-media__image"
/></a>
<a
href="https://wa.me/2349012207356?text=Hello,%20I%20would%20like%20to%20be%20your%20friend!!"
class="social-media__link"
><img
src="./assets/images/icons/whatsapp.svg"
alt="What's app"
class="social-media__image"
/></a>
</div>
</div>
</div>
<!-- code for attribution -->
<div class="footer-attribution">
© 2022 All rights reserved. Coded by
<a href="https://github.com/babboe1">babboeCodes</a>.
</div>
</footer>
</body>
</html>