-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·375 lines (369 loc) · 24.2 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
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="Max Lockwood - Frontend Web Developer Portfolio. Explore his HTML, CSS, and JavaScript projects. Based in Bristol, UK. Contact for custom web development services.">
<meta name="keywords"
content="portfolio, frontend developer, frontend development, web developer, web development portfolio, web design, html, css, javascript">
<meta name="author" content="Max Lockwood">
<title>Max Lockwood</title>
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="assets/favicon/ml-leaf-32.png" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap" rel="stylesheet">
<!-- Font Awesome Icons -->
<script src="https://kit.fontawesome.com/8791d78d95.js" crossorigin="anonymous"></script>
<!-- Bootstrap CDN -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous">
<!-- Main CSS -->
<link rel="stylesheet" type="text/css" href="css/main.css">
</head>
<body class="d-flex flex-column min-vh-100">
<!-- Header -->
<nav class="navbar navbar-expand-md bg-body-tertiary sticky-top">
<div class="container-lg py-2">
<a class="navbar-brand" href="#"><img src="assets/logo/ml-leaf-48.svg" alt="Max Lockwood Logo" width="32"
height="32"></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false"
aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://maxlockwood.dev/blog/">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#projects">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
<a href="https://github.com/Max88-git" target="_blank" rel="noopener" aria-label="github"><i
class="fab fa-solid fa-brands fa-github fa-lg px-3"></i></a>
<a href="https://twitter.com/maxlockwood88" target="_blank" rel="noopener" aria-label="twitter"><i
class="fab fa-solid fa-brands fa-twitter fa-lg px-3"></i></a>
</div>
</div>
</nav>
<div class="container-xxl">
<main>
<!-- Hero -->
<div class="container px-4 py-5 my-5 text-center">
<img src="assets/profile/max-profile-photo-612.png" width="150" height="150" class="rounded-circle mb-4"
alt="Profile Picture">
<p class="fs-4 mb-2">Hey there, I'm Max</p>
<h1 class="display-5 mb-2">Frontend Developer</h1>
<div class="col-lg-6 mx-auto">
<p class="lead mb-4">Based in Bristol, UK</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<a href="#" class="btn btn-dark btn-lg px-4 gap-3">Download CV</a>
<a href="#contact" class="btn btn-outline-dark btn-lg px-4 gap-3">Contact me</a>
</div>
</div>
</div>
<!-- About -->
<div id="about" class="container py-5 my-5 text-center">
<div class="row">
<div class="col-lg-8 offset-lg-2">
<h2 class="display-6 fw-bold mb-5">About</h2>
<p class="lead">I'm Max Lockwood a Frontend Developer with a passion for web design and
development. I'm
currently employed in the creative field and want to make the switch to web development.</p>
<p class="lead">I knew I'd be encouraged to create more after writing my first line of code and
creating a working web page. Simply put, I enjoy learning, and this project is an excellent
example of that!
</p>
<p class="lead">I'm looking for a chance to work with a JavaScript framework, and I'd like to
learn
more about responsive mobile design in the long run.</p>
<p class="lead">You can usually find me sketching, hiking, or riding a mountain bike or
motorcycle
when I'm not coding.</p>
<p class="lead"> Please visit my contact section if you'd want to learn more about what
motivates
me.
</p>
</div>
</div>
</div>
<!-- Skills -->
<div class="px-4 py-5 my-5 text-center">
<h2 class="display-6 fw-bold mb-5">Skills</h2>
<p class="lead mb-5">Here are a set of skills I have experience using as a frontend developer:</p>
<i class="fab fa-solid fa-brands fa-html5 fa-3x p-3"></i>
<i class="fab fa-solid fa-brands fa-css3-alt fa-3x p-3"></i>
<i class="fab fa-solid fa-brands fa-js fa-3x p-3"></i>
<i class="fab fa-solid fa-brands fa-sass fa-3x p-3"></i>
<i class="fab fa-solid fa-brands fa-bootstrap fa-3x p-3"></i>
<i class="fab fa-solid fa-brands fa-react fa-3x p-3"></i>
<i class="fab fa-solid fa-brands fa-git-alt fa-3x p-3"></i>
<i class="fab fa-solid fa-brands fa-github fa-3x p-3"></i>
<i class="fab fa-solid fa-brands fa-figma fa-3x p-3"></i>
</div>
<!-- Projects -->
<div id="projects" class="py-5 my-5 bg-body">
<div class="container">
<h2 class="display-6 fw-bold mb-5 text-center">Projects</h2>
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
<!-- First Row -->
<div class="col">
<div class="card shadow-sm">
<img src="assets/projects/project-todomatic-react.jpg"
class="bd-placeholder-img card-img-top img-fluid" width="100%" height="225"
alt="...">
<!-- <svg class="bd-placeholder-img card-img-top" width="100%" height="225"
xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: Thumbnail"
preserveAspectRatio="xMidYMid slice" focusable="false">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="#55595c" /><text x="50%" y="50%"
fill="#eceeef" dy=".3em">Thumbnail</text>
</svg> -->
<div class="card-body">
<p class="card-text">React To-Do List App, to showcase my understanding of
fundamental React concepts.
</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://github.com/Max88-git/todomatic-react" target="_blank"
rel="noopener" class="btn btn-sm btn-outline-secondary">Code</a>
<a href="https://max88-git.github.io/todomatic-react/" target="_blank"
rel="noopener" class="btn btn-sm btn-outline-secondary">Live</a>
</div>
<small class="text-body-secondary">React</small>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="assets/projects/project-mtb-quiz.jpg"
class="bd-placeholder-img card-img-top img-fluid" width="100%" height="225"
alt="...">
<!-- <svg class="bd-placeholder-img card-img-top" width="100%" height="225"
xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: Thumbnail"
preserveAspectRatio="xMidYMid slice" focusable="false">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="#55595c" /><text x="50%" y="50%"
fill="#eceeef" dy=".3em">Thumbnail</text>
</svg> -->
<div class="card-body">
<p class="card-text">Mountain Bike JavaScript Quiz App, a multiple-choice adventure
that challenges and educates.
</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://github.com/Max88-git/mtb-quiz" target="_blank"
rel="noopener" class="btn btn-sm btn-outline-secondary">Code</a>
<a href="https://max88-git.github.io/mtb-quiz/" target="_blank"
rel="noopener" class="btn btn-sm btn-outline-secondary">Live</a>
</div>
<small class="text-body-secondary">JavaScript</small>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="assets/projects/project-simple-modal.jpg"
class="bd-placeholder-img card-img-top img-fluid" width="100%" height="225"
alt="...">
<!-- <svg class="bd-placeholder-img card-img-top" width="100%" height="225"
xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: Thumbnail"
preserveAspectRatio="xMidYMid slice" focusable="false">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="#55595c" /><text x="50%" y="50%"
fill="#eceeef" dy=".3em">Thumbnail</text>
</svg> -->
<div class="card-body">
<p class="card-text">A custom modal window to welcome new users to a teams
dashboard.
</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://github.com/Max88-git/simple-modal" target="_blank"
rel="noopener" class="btn btn-sm btn-outline-secondary">Code</a>
<a href="https://max88-git.github.io/simple-modal/" target="_blank"
rel="noopener" class="btn btn-sm btn-outline-secondary">Live</a>
</div>
<small class="text-body-secondary">CSS</small>
</div>
</div>
</div>
</div>
<!-- Second Row -->
<div class="col">
<div class="card shadow-sm">
<img src="assets/projects/project-intro-component.jpg"
class="bd-placeholder-img card-img-top img-fluid" width="100%" height="225"
alt="...">
<!-- <svg class="bd-placeholder-img card-img-top" width="100%" height="225"
xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: Thumbnail"
preserveAspectRatio="xMidYMid slice" focusable="false">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="#55595c" /><text x="50%" y="50%"
fill="#eceeef" dy=".3em">Thumbnail</text>
</svg> -->
<div class="card-body">
<p class="card-text">Intro Component featuring a seamless sign-up form solution
complete with advanced form validation.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://github.com/Max88-git/intro-component" target="_blank"
rel="noopener" class="btn btn-sm btn-outline-secondary">Code</a>
<a href="https://max88-git.github.io/intro-component/" target="_blank"
rel="noopener" class="btn btn-sm btn-outline-secondary">Live</a>
</div>
<small class="text-body-secondary">CSS</small>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="assets/projects/project-enviro-bootstrap.jpg"
class="bd-placeholder-img card-img-top img-fluid" width="100%" height="225"
alt="...">
<!-- <svg class="bd-placeholder-img card-img-top" width="100%" height="225"
xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: Thumbnail"
preserveAspectRatio="xMidYMid slice" focusable="false">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="#55595c" /><text x="50%" y="50%"
fill="#eceeef" dy=".3em">Thumbnail</text>
</svg> -->
<div class="card-body">
<p class="card-text">Crafted with Bootstrap 5, this landing page empowers
environmental organizations.</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://github.com/Max88-git/enviro-bootstrap" target="_blank"
rel="noopener" class="btn btn-sm btn-outline-secondary">Code</a>
<a href="https://max88-git.github.io/enviro-bootstrap/" target="_blank"
rel="noopener" class="btn btn-sm btn-outline-secondary">Live</a>
</div>
<small class="text-body-secondary">Bootstrap</small>
</div>
</div>
</div>
</div>
<div class="col">
<div class="card shadow-sm">
<img src="assets/projects/project-finance-app.jpg"
class="bd-placeholder-img card-img-top img-fluid" width="100%" height="225"
alt="...">
<!-- <svg class="bd-placeholder-img card-img-top" width="100%" height="225"
xmlns="http://www.w3.org/2000/svg" role="img" aria-label="Placeholder: Thumbnail"
preserveAspectRatio="xMidYMid slice" focusable="false">
<title>Placeholder</title>
<rect width="100%" height="100%" fill="#55595c" /><text x="50%" y="50%"
fill="#eceeef" dy=".3em">Thumbnail</text>
</svg> -->
<div class="card-body">
<p class="card-text">Finance App landing page showcasing responsive web design that
engages users across devices.
</p>
<div class="d-flex justify-content-between align-items-center">
<div class="btn-group">
<a href="https://github.com/Max88-git/finance-app" target="_blank"
rel="noopener" class="btn btn-sm btn-outline-secondary">Code</a>
<a href="https://max88-git.github.io/finance-app/" target="_blank"
rel="noopener" class="btn btn-sm btn-outline-secondary">Live</a>
</div>
<small class="text-body-secondary">CSS</small>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Contact Form -->
<div id="contact" class="container py-4 my-5">
<h2 class="display-6 fw-bold mb-5 text-center">Contact</h2>
<div class="row"></div>
<div class="col-lg-6 offset-lg-3">
<form id="contactForm" form action="POST" data-netlify="true">
<!-- Name input -->
<div class="mb-3">
<label class="form-label" for="name">Name</label>
<input class="form-control" id="name" type="text" placeholder="Name" />
</div>
<!-- Email address input -->
<div class="mb-3">
<label class="form-label" for="emailAddress">Email Address</label>
<input class="form-control" id="emailAddress" type="email" placeholder="Email Address" />
</div>
<!-- Message input -->
<div class="mb-3">
<label class="form-label" for="message">Message</label>
<textarea class="form-control" id="message" type="text" placeholder="Message"
style="height: 10rem;"></textarea>
</div>
<div class="recaptcha-field">
<div data-netlify-recaptcha="true"></div>
</div>
<!-- Form submit button -->
<div class="d-grid">
<button class="btn btn-dark btn-lg" type="submit">Submit</button>
</div>
</form>
</div>
</div>
<!-- Platforms -->
<div class="px-4 py-5 my-5 text-center">
<h2 class="display-6 fw-bold mb-5">Platforms</h2>
<p class="lead mb-5">You can connect and reach me on the following platforms:</p>
<div class="d-grid gap-2 d-sm-block">
<a class="btn btn-dark" href="https://github.com/Max88-git" target="_blank" rel="noopener"
role="button">GitHub</a>
<a class="btn btn-dark" href="https://www.linkedin.com/in/max-lockwood/" target="_blank"
rel="noopener" role="button">LinkedIn</a>
<a class="btn btn-dark" href="https://twitter.com/maxlockwood88" target="_blank" rel="noopener"
role="button">Twitter</a>
<a class="btn btn-dark" href="https://dev.to/max88git" target="_blank" rel="noopener"
role="button">DEV
Community</a>
<a class="btn btn-dark" href="https://www.codewars.com/users/maxlockwood" target="_blank"
rel="noopener" role="button">Codewars</a>
<a class="btn btn-dark" href="https://www.frontendmentor.io/profile/Max88-git" target="_blank"
rel="noopener" role="button">Frontend Mentor</a>
</div>
</div>
</main>
</div>
<!-- Footer -->
<div class="container-fluid bg-body-tertiary">
<footer class="container-lg d-flex flex-wrap justify-content-between align-items-center py-3 my-4">
<p class="col-md-4 mb-0 text-body-secondary">© 2023 Max Lockwood. All rigths reserved.</p>
<a href="/"
class="col-md-4 d-flex align-items-center justify-content-center mb-3 mb-md-0 me-md-auto link-body-emphasis text-decoration-none">
<img src="assets/logo/ml-leaf-48.svg" width="32" height="32" alt="Max Lockwood Logo">
</a>
<ul class="nav col-md-4 justify-content-end">
<li class="nav-item"><a href="#" class="nav-link px-2 text-body-secondary">Home</a></li>
<li class="nav-item"><a href="#about" class="nav-link px-2 text-body-secondary">About</a></li>
<li class="nav-item"><a href="https://maxlockwood.dev/blog/"
class="nav-link px-2 text-body-secondary">Blog</a></li>
<li class="nav-item"><a href="#projects" class="nav-link px-2 text-body-secondary">Projects</a></li>
<li class="nav-item"><a href="#contact" class="nav-link px-2 text-body-secondary">Contact</a></li>
</ul>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-HwwvtgBNo3bZJJLYd8oVXjrBZt8cqVSpeBNS5n7C8IVInixGAoxmnlMuBnhbgrkm"
crossorigin="anonymous"></script>
</body>
</html>