-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
400 lines (391 loc) · 13.4 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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
<!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" />
<!-- Styles -->
<link rel="stylesheet" href="./styles/normalize.css" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./styles/bootstrap-social.css" />
<link rel="stylesheet" href="./styles/style.css" />
<!-- Font Awesome -->
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf"
crossorigin="anonymous"
/>
<!-- Typography -->
<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=Roboto:wght@300;500&display=swap"
rel="stylesheet"
/>
<title>Daniel Medley</title>
</head>
<div class="container-fluid">
<body>
<header
id="header"
class="jumbotron text-center d-flex align-items-center justify-content-center"
>
<div class="lh-1 jumbotronContents">
<h1 class="p-3">
Hello, I'm <span class="text-danger">Daniel Medley</span>.<br />
I'm a full-stack web developer.
</h1>
<a
role="button"
class="btn btn-lg btn-danger btn-outline-light mt-4"
href="#projects"
>View my work</a
>
</div>
</header>
<nav>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container-fluid">
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNav"
aria-controls="navbarNav"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="collapse navbar-collapse justify-content-center"
id="navbarNav"
>
<ul class="navbar-nav">
<li class="nav-item">
<a
class="nav-link text-danger"
aria-current="page"
href="#header"
>HOME</a
>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#about">ABOUT</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#skills">SKILLS</a>
</li>
<li class="nav-item">
<a class="nav-link text-light" href="#projects">PROJECTS</a>
</li>
<li class="nav-item">
<a
href=""
class="nav-link text-light"
data-bs-toggle="modal"
data-bs-target="#contactMeForm"
>CONTACT</a
>
</li>
</ul>
</div>
</div>
</nav>
</nav>
<section id="about">
<div class="card py-5 aboutSection">
<div class="row">
<div class="col-md-4 text-center">
<img
class="imgPortrait img-fluid"
src="./img/portrait.jpg"
alt="Self Portrait"
/>
</div>
<div class="col-md-8">
<div class="card-body text-center text-md-start">
<h2 class="card-title">
A<span class="underlined">BOUT</span> ME
</h2>
<p class="card-text">
I am a recent Nucamp Full Stack Web + Mobile Development
bootcamp graduate with over 8 years of professional experience
as a former Systems Administrator, Network Engineer, and Wi-Fi
surveyor and designer.
</p>
<div class="row">
<div
class="col d-flex justify-content-center justify-content-md-start"
>
<button type="button" class="btn btn-lg btn-outline-light">
View Resume
</button>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="skills" class="skillsSection py-4">
<h2 class="text-center">S<span class="underline">KILL</span>S</h2>
<div class="row py-4">
<div class="py-2 col-md-3 text-center col-sm-6">
<img class="imgLogo" src="./img/html5+icon.svg" alt="HTML Logo" />
<h2 class="mt-2">STRUCTURE</h2>
</div>
<div class="py-2 col-md-3 text-center">
<img class="imgLogo" src="./img/icons+css.svg" alt="CSS Logo" />
<h2 class="mt-2">STYLE</h2>
</div>
<div class="py-2 col-md-3 text-center col-sm-6">
<img
class="imgLogo"
src="./img/icons+javascript.svg"
alt="Javascript Logo"
/>
<h2 class="mt-2">LOGIC</h2>
</div>
<div class="py-2 col-md-3 text-center">
<img class="imgLogo" src="./img/react+icon.svg" alt="React Logo" />
<h2 class="mt-2">REUSABILITY</h2>
</div>
</div>
</section>
<section id="projects" class="projectSection p-4">
<h2 class="text-center pt-4">
P<span class="underline">ROJECT</span>S
</h2>
<div class="row">
<div class="col text-center mt-4">
<div class="btn-group" role="group" aria-label="Basic example">
<button
data-bs-target="#HTML_CSS"
data-bs-toggle="collapse"
type="button"
class="btn btn-outline-light"
>
HTML/CSS
</button>
<button
data-bs-target="#React"
data-bs-toggle="collapse"
type="button"
class="btn btn-outline-light"
>
REACT
</button>
<button
data-bs-target="#ReactNative"
data-bs-toggle="collapse"
type="button"
class="btn btn-outline-light"
>
REACT NATIVE
</button>
</div>
</div>
</div>
<div id="HTML_CSS" class="row mt-4 justify-content-center">
<div class="col-sm-12 col-md-4 mb-4">
<img
class="img-fluid projectsThumbNail"
src="https://picsum.photos/id/123/500"
alt="Stock Image"
/>
</div>
<div class="col-sm-12 col-md-4 mb-4">
<img
class="img-fluid projectsThumbNail"
src="https://picsum.photos/id/347/500"
alt="Stock Image"
/>
</div>
<div class="col-sm-12 col-md-4 mb-4">
<img
class="img-fluid projectsThumbNail"
src="https://picsum.photos/id/378/500"
alt="Stock Image"
/>
</div>
</div>
<div id="React" class="row mt-4 collapse justify-content-center">
<div class="col-sm-12 col-md-4 mb-4">
<img
class="img-fluid projectsThumbNail"
src="https://picsum.photos/id/1004/500"
alt="Stock Image"
/>
</div>
<div class="col-sm-12 col-md-4 mb-4">
<img
class="img-fluid projectsThumbNail"
src="https://picsum.photos/id/1003/500"
alt="Stock Image"
/>
</div>
<div class="col-sm-12 col-md-4 mb-4">
<img
class="img-fluid projectsThumbNail"
src="https://picsum.photos/id/1008/500"
alt="Stock Image"
/>
</div>
</div>
<div id="ReactNative" class="row mt-4 collapse justify-content-center">
<div class="col-sm-12 col-md-4 mb-4">
<img
class="img-fluid projectsThumbNail"
src="https://picsum.photos/id/1019/500"
alt="Stock Image"
/>
</div>
<div class="col-sm-12 col-md-4 mb-4">
<img
class="img-fluid projectsThumbNail"
src="https://picsum.photos/id/102/500"
alt="Stock Image"
/>
</div>
<div class="col-sm-12 col-md-4 mb-4">
<img
class="img-fluid projectsThumbNail"
src="https://picsum.photos/id/1024/500"
alt="Stock Image"
/>
</div>
</div>
</section>
<section id="contact" class="contactMe py-4 text-center">
<div class="row">
<div class="col-12">
<button
type="button"
class="btn btn-lg btn-danger btn-outline-light"
data-bs-toggle="modal"
data-bs-target="#contactMeForm"
>
CONTACT ME
</button>
</div>
<div class="col-12 mt-4">
<a href="#header" class="to-top">BACK TO TOP</a>
</div>
</div>
<!-- Button trigger modal -->
<!-- Modal -->
<section
class="modal fade"
id="contactMeForm"
tabindex="-1"
aria-labelledby="contactMeModal"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="contactMeModal">CONTACT</h5>
<button
type="button"
class="btn-close btn-close-white"
data-bs-dismiss="modal"
aria-label="Close"
></button>
</div>
<div class="modal-body">
<form class="container-fluid">
<div class="row mb-4">
<div class="col-sm-12 col-md-6 inputField form-group">
<input
type="text"
class="form-control mt-2"
id="name"
placeholder="Enter name"
name="name"
/>
</div>
<div class="col-sm-12 col-md-6">
<input
type="text"
class="form-control mt-2"
id="email"
placeholder="Enter email"
name="email"
/>
</div>
</div>
<div class="row mt-4">
<div class="col">
<textarea
class="form-control"
id="textArea"
rows="3"
placeholder="Message Me"
></textarea>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button
type="button"
class="btn btn-lg btn-outline-light mr-4"
data-bs-dismiss="modal"
>
CLOSE
</button>
<button
type="submit"
form="fakeForm"
formaction="fakeURL.com"
data-bs-dismiss="modal"
class="btn btn-lg btn-outline-light btn-danger"
>
SUBMIT
</button>
</div>
</div>
</div>
</section>
</section>
<footer class="py-4">
<div class="row">
<div class="col text-center">
<a
class="btn btn-lg btn-primary"
href="https://www.linkedin.com/in/danielmedleyprofile"
target="_blank"
role="button"
><i class="fab fa-linkedin-in"></i
></a>
<a
class="btn btn-lg btn-primary githubIcon"
href="https://github.com/medledan"
target="_blank"
role="button"
><i class="fab fa-github"></i
></a>
</div>
</div>
<p class="mt-4 text-center"><small>Daniel Medley © 2021</small></p>
</footer>
<script
src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
crossorigin="anonymous"
></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF"
crossorigin="anonymous"
></script>
</body>
</div>
</html>