-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
280 lines (280 loc) · 15.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio | KeepCoding</title>
<link rel="stylesheet" href="./styles/normalize.css">
<link rel="stylesheet" href="./styles/fonts.css">
<link rel="stylesheet" href="./styles/common.css">
<link rel="stylesheet" href="./styles/components.css">
<link rel="stylesheet" href="./styles/header.css">
<link rel="stylesheet" href="./styles/banner.css">
<link rel="stylesheet" href="./styles/about.css">
<link rel="stylesheet" href="./styles/skills.css">
<link rel="stylesheet" href="./styles/footer.css">
</head>
<body>
<h1 class="sr-text">Dennis Nedry Portfolio</h1>
<a class="skip-to-content-link" href="#main-content">Skip to content</a>
<header class="header">
<div class="header-content">
<a href="./">
<svg fill="#ffffff" width="200" height="200" viewBox="0 0 53 44" xmlns="http://www.w3.org/2000/svg" aria-label="[title]" role="img"><path d="M23.2997 0L52.0461 28.6301V44H38.6311V34.1553L17.7522 13.3607L13.415 13.3607L13.415 44H0L0 0L23.2997 0ZM38.6311 15.2694V0L52.0461 0V15.2694L38.6311 15.2694Z"></path><title>Home</title></svg>
</a>
<nav class="nav">
<ul class="list">
<li>
<a href="#about">About</a>
</li>
<li>
<a href="#skills">Skills</a>
</li>
<li>
<a href="./pages/portfolio.html">Portfolio</a>
</li>
<li>
<a href="#contact">Contact</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="banner">
<div class="image-bg"></div>
<div class="content">
<h2>Dennis Nedry</h2>
<p>Computer Engineer</p>
<a href="./pages/portfolio.html" class="button">Check out my work</a>
</div>
</section>
<main class="main" id="main-content">
<section class="about" id="about">
<picture>
<source srcset="./assets/img/profile-portrait.jpg" media="(min-width: 768px)">
<source srcset="./assets/img/profile-landscape.jpg">
<img src="./assets/img/profile-landscape.jpg" alt="Dennis Nedry picture">
</picture>
<div class="content">
<h3>Dennis Theodore Nedry</h3>
<p>Computer engineer from Cambridge University, passionate about technology and chaos. With extensive experience in creating and managing complex security systems and troubleshooting (might also make some trobule). Feel free to contact me if you have any no expense spared project, or want to sabotage one, and interacting with local wildlife is not required.</p>
<ul>
<li><strong>From:</strong> Ohio, US 🇺🇸</li>
<li><strong>Lives in:</strong> Nublar Island, Costa Rica 🇨🇷</li>
<li><strong>Age:</strong> 39</li>
<li><strong>Gender:</strong> Male</li>
</ul>
</div>
</section>
<section class="skills" id="skills">
<h3>Skills</h3>
<ul class="content">
<li class="skill">
<div class="progress-details">
<span><strong>Cybersecurity</strong></span>
<span>85%</span>
</div>
<div class="progress-bg">
<div class="progress-bar skill-a"></div>
</div>
</li>
<li class="skill">
<div class="progress-details">
<span><strong>Debugging</strong></span>
<span>95%</span>
</div>
<div class="progress-bg">
<div class="progress-bar skill-b"></div>
</div>
</li>
<li class="skill">
<div class="progress-details">
<span><strong>Animal Care</strong></span>
<span>20%</span>
</div>
<div class="progress-bg">
<div class="progress-bar skill-c"></div>
</div>
</li>
<li class="skill">
<div class="progress-details">
<span><strong>DB Management</strong></span>
<span>70%</span>
</div>
<div class="progress-bg">
<div class="progress-bar skill-d"></div>
</div>
</li>
<li class="skill">
<div class="progress-details">
<span><strong>Spying</strong></span>
<span>40%</span>
</div>
<div class="progress-bg">
<div class="progress-bar skill-e"></div>
</div>
</li>
<li class="skill">
<div class="progress-details">
<span><strong>Parallel Processing</strong></span>
<span>90%</span>
</div>
<div class="progress-bg">
<div class="progress-bar skill-f"></div>
</div>
</li>
</ul>
</section>
<section id="contact">
<h3>Get in touch</h3>
<form action="./response" method="post">
<fieldset class="contact-data">
<div class="field">
<label for="name">Name *</label>
<input
type="text"
name="formName"
id="name"
required
autocomplete="on"
placeholder="Your Name"
title="Introduce your name"
>
</div>
<div class="field">
<label for="surname">Surname *</label>
<input
type="text"
name="formSurname"
id="surname"
required
autocomplete="on"
placeholder="Your Surname"
title="Introduce your surname"
>
</div>
<div class="field">
<label for="phone">Phone *</label>
<input
type="tel"
name="formPhone"
id="phone"
required
autocomplete="on"
placeholder="Your Phone Number"
title="Provide your phone number using the format XXX XXX-XXXX"
pattern="[0-9]{3} [0-9]{3}-[0-9]{4}"
aria-describedby="phone-hint"
>
<span id="phone-hint">Provide your phone number using the format XXX XXX-XXXX</span>
</div>
<div class="field">
<label for="github-user">GitHub username</label>
<input
type="text"
name="formGithubUser"
id="github-user"
placeholder="Your GitHub Username"
title="Provide your GitHub tag using with the format @username"
pattern="^@[^\s]+"
aria-describedby="github-hint"
>
<span id="github-hint">Provide your GitHub tag using with the format @username</span>
</div>
</fieldset>
<div class="field">
<p for="prev-meeting">How did you meet me? *</p>
<div class="choice">
<input
type="radio"
name="formPrevMeeting"
id="university"
required
value="university"
checked
>
<label for="university">University</label>
</div>
<div class="choice">
<input
type="radio"
name="formPrevMeeting"
id="keepcoding"
required
value="keepcoding"
>
<label for="keepcoding">KeepCoding Kick-Off</label>
</div>
<div class="choice">
<input
type="radio"
name="formPrevMeeting"
id="school"
required
value="school"
>
<label for="school">School</label>
</div>
<div class="choice">
<input
type="radio"
name="formPrevMeeting"
id="github"
required
value="github"
>
<label for="github">GitHub</label>
</div>
</div>
<div class="field">
<label for="about-user">More information *</label>
<textarea
name="formAboutUser"
id="about-user"
required
placeholder="Enter message here (180 characters max.)"
rows="10"
maxlength="180"
></textarea>
</div>
<div class="field">
<div class="choice">
<input
type="checkbox"
name="formNewsletterSub"
id="news"
>
<label for="news">Subscribe to newsletter</label>
</div>
</div>
<div class="form-buttons">
<button class="button">Save form</button>
<input class="button" type="reset" value="Reset form">
</div>
</form>
</section>
</main>
<footer class="footer">
<div class="footer-content">
<ul class="list">
<li>
<a href="https://keepcoding.io/" target="_blank">
<svg fill="#000000" height="200px" width="200px" viewBox="0 0 62 62" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-label="[title]" role="img" preserveAspectRatio="xMidYMid meet"<g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"><path d="M32 2C15.432 2 2 15.432 2 32s13.432 30 30 30s30-13.432 30-30S48.568 2 32 2m6.016 44.508l-8.939-12.666l-2.922 2.961v9.705h-5.963V17.492h5.963v11.955l11.211-11.955h7.836L33.293 29.426l12.518 17.082h-7.795"></path></g><title>Go to KeepCoding</title></svg>
</a>
</li>
<li>
<a href="https://github.com/miguelferlez" target="_blank">
<svg fill="#000000" height="200px" width="200px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-143 145 512 512" xml:space="preserve" role="img" aria-label="[title]"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <path d="M177.1,398.4c-8.6-1.5-17.6-1.3-26.4-0.8c-20,1.1-40,3-60,1.2c-9.5-0.9-19.1-1.8-28.7-1.6c-17.4,0.3-32,6-40.6,22.6 c-4.3,8.2-5.3,17-5,26.1c0.7,25.6,11.8,40.2,36.2,47.5c19.6,5.8,39.7,6.6,59.9,6.2c7.5,0,15,0.4,22.5-0.1 c15.5-0.9,30.7-3.2,45.4-8.6c15.2-5.6,24.3-16.3,27.6-31.8c1.3-6,1.9-12.3,1.8-18.4C209.6,420,195.6,401.5,177.1,398.4z M78.7,466.1c-6.5,7.1-15.9,7.2-22.6,0.3c-4.9-5-7.7-12.7-7.7-22.3c0.2-6.5,2.1-13.6,7.7-19.3c6.7-6.9,16.1-6.8,22.6,0.2 C88.5,435.6,88.5,455.5,78.7,466.1z M169.6,466.6c-6.1,6.3-14.9,6.5-21.4,0.7c-11.2-10.2-11.2-32.9,0-43.2 c6.4-5.9,15.2-5.7,21.4,0.6c5.7,5.8,7.6,13.1,7.9,20.9C177.2,453.5,175.2,460.7,169.6,466.6z"></path> <path d="M113,145c-141.4,0-256,114.6-256,256s114.6,256,256,256s256-114.6,256-256S254.4,145,113,145z M244.2,423.4 c-1.4,11.4-3.8,23.1-7.9,33.8c-12,30.7-36,47.6-67.8,52.7c-18.2,2.9-36.9,3-57.1,4.5c-18.1-1.6-38-1.8-57.3-5.2 c-37.4-6.6-62.8-32.8-70.2-70.3c-3.8-19.1-4.9-38.3,1-57.3c3.1-9.8,8.2-18.5,14.8-26.4c0.9-1,1.7-2.5,1.6-3.8 c-1.1-17.2,0.9-34.2,6-50.6c4.2-13.7,1.1-12.9,16.3-8.9c18.3,4.8,34.3,14.7,50,25c1.8,1.2,4.6,1.7,6.8,1.3 c22.2-3.4,44.3-3.6,66.5,0.3c1.6,0.3,3.7-0.3,5.2-1.2c13.5-8.8,27.4-16.7,42.6-22.2c5.5-2,11.3-3.3,16.9-5c2.5-0.7,3.6,0.2,4.5,2.6 c6.8,19,9.6,38.5,8.6,58.6c-0.1,1.1,0.5,2.6,1.2,3.5C243,374.6,247.3,398.2,244.2,423.4z"></path> </g> </g><title>Go to GitHub</title></svg>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/miguelferlez" target="_blank">
<svg fill="#101118" height="200px" width="200px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="-143 145 512 512" xml:space="preserve" stroke="#101118"><g id="SVGRepo_bgCarrier" stroke-width="0" role="img" aria-label="[title]"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <path d="M113,145c-141.4,0-256,114.6-256,256s114.6,256,256,256s256-114.6,256-256S254.4,145,113,145z M41.4,508.1H-8.5V348.4h49.9 V508.1z M15.1,328.4h-0.4c-18.1,0-29.8-12.2-29.8-27.7c0-15.8,12.1-27.7,30.5-27.7c18.4,0,29.7,11.9,30.1,27.7 C45.6,316.1,33.9,328.4,15.1,328.4z M241,508.1h-56.6v-82.6c0-21.6-8.8-36.4-28.3-36.4c-14.9,0-23.2,10-27,19.6 c-1.4,3.4-1.2,8.2-1.2,13.1v86.3H71.8c0,0,0.7-146.4,0-159.7h56.1v25.1c3.3-11,21.2-26.6,49.8-26.6c35.5,0,63.3,23,63.3,72.4V508.1z "></path> </g><title>Go to LinkedIn</title></svg>
</a>
</li>
</ul>
<p class="text">© 2025 Miguel Fernández</p>
</div>
</footer>
</body>
</html>