-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
418 lines (400 loc) · 14.8 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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
<!-- TODO: Fix text styling for the portfolio's landing page -->
<!-- TODO: Change all <section> projects to be clickable. -->
<!-- TODO: Remove all h2 since the tag "Description" is unnecessary -->
<!-- TODO: Add smooth scroll -->
<!-- TODO: Add a "night mode" color scheme -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Anubis's Portfolio</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"
integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
type="text/css"
href="assets/css/global_styles.css"
/>
</head>
<body>
<nav class="navbar fixed-top navbar-expand-lg navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">LockedWard</a>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-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 ml-auto">
<li class="nav-item active">
<a href="https://github.com/mr2much/webdev" target="_blank"
><button class="btn btn-secondary bg-danger my-2 my-lg-1">
View Portfolio Code In GitHub
</button></a
>
</li>
</ul>
</div>
</div>
</nav>
<div class="wrapper">
<div class="jumbotron header d-flex flex-column justify-content-center">
<div class="container p-lg-5 text-dark">
<h1 class="mb-0 mb-lg-5">About me</h1>
<p class="text-white">
Not much to say right now, I'm just learning web design
</p>
<q>Photo by rawpixel on Unsplash</q>
</div>
</div>
<div class="portfolio-filters">
<div class="btn-group" role="group" aria-label="Basic example">
<a href="#" id="spring-filter" class="btn btn-primary mx-1 my-2"
>Spring</a
>
<a href="#" class="btn btn-primary mx-1 my-2">JavaScript</a>
<a href="#" id="powerapps-filter" class="btn btn-primary mx-1 my-2"
>Power Apps</a
>
<a href="#" id="java-filter" class="btn btn-primary mx-1 my-2"
>Java</a
>
<!-- <button type="button" class="btn btn-secondary">Left</button>
<button type="button" class="btn btn-secondary">Middle</button>
<button type="button" class="btn btn-secondary">Right</button> -->
</div>
</div>
<main class="content full-width">
<div
id="img-container"
class="card text-dark mx-auto"
data-keywords="power apps, power automate, sharepoint, ms teams, html email templates"
>
<div id="appevents-proj" class="thumb-view face face1">
<div class="contenido">
<p>NOCIncidentManager</p>
</div>
</div>
<div class="face face2">
<h5 class="card-title my-1">NOCIncidentManager</h5>
<h6 class="card-subtitle my-2">
Power Apps Canvas, Power Automate, SharePoint, MS Teams, HTML
Email Templates
</h6>
<p class="card-text">
A Canvas App to handle the entire Incident notificacion process
from its creation to its solution. It supports three types of
reporting, i.e. minor, major, and critical, as well as...
</p>
<div id="btn-container">
<a
href="https://mr2much.github.io/webdev/imggallery/html/index"
target="_blank"
class="btn card-link bg-danger text-white py-3 mt-3"
>View More Details</a
>
</div>
</div>
</div>
<div id="img-container" class="card text-dark mx-auto">
<div id="catapp-proj" class="thumb-view face face1">
<div class="contenido">
<p>CatPhotoApp</p>
</div>
</div>
<div class="face face2">
<h5 class="card-title my-1">CatPhotoApp</h5>
<h6 class="card-subtitle mb-2">HTML/CSS</h6>
<p class="card-text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit
</p>
<div id="btn-container">
<a
href="https://github.com/mr2much/webdev/tree/master/catphotoapp"
target="_blank"
class="btn card-link bg-danger text-white"
>GitHub</a
>
<a
href="https://mr2much.github.io/webdev/catphotoapp/html/practice"
target="_blank"
class="btn card-link bg-danger text-white"
>Visit Page</a
>
</div>
</div>
</div>
<div
id="img-container"
class="card text-dark mx-auto"
data-keywords="java, spring"
>
<div id="onlinecv-proj" class="thumb-view face face1">
<div class="contenido">
<p>My OnlineCV</p>
</div>
</div>
<div class="face face2">
<h5 class="card-title my-1">My Online CV</h5>
<h6 class="card-subtitle mb-2">HTML/CSS/Java/Spring</h6>
<p class="card-text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit
</p>
<div id="btn-container">
<a
href="https://github.com/mr2much/webdev/tree/master/onlinecv"
target="_blank"
class="btn card-link bg-danger text-white"
>GitHub</a
>
<a
href="https://anubisonlinecv.herokuapp.com/"
target="_blank"
class="btn card-link bg-danger text-white"
>Visit Page</a
>
</div>
</div>
</div>
<div id="img-container" class="card text-dark mx-auto">
<div id="regform-proj" class="thumb-view face face1">
<div class="contenido">
<p>Basic Registration Form</p>
</div>
</div>
<div class="face face2">
<h5 class="card-title my-1">Basic Registration Form</h5>
<h6 class="card-subtitle mb-2">HTML/CSS</h6>
<p class="card-text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit
</p>
<div id="btn-container">
<a
href="https://github.com/mr2much/webdev/tree/master/onlineform"
target="_blank"
class="btn card-link bg-danger text-white"
>GitHub</a
>
<a
href="https://mr2much.github.io/webdev/onlineform/html/index"
target="_blank"
class="btn card-link bg-danger text-white"
>Visit Page</a
>
</div>
</div>
</div>
<div id="img-container" class="card text-dark mx-auto">
<div id="todolist-proj" class="thumb-view face face1">
<div class="contenido">
<p>TODO List</p>
</div>
</div>
<div class="face face2">
<h5 class="card-title my-1">TODO List</h5>
<h6 class="card-subtitle mb-2">HTML/CSS</h6>
<p class="card-text">
I don't remember where I found this cool looking effect, this is
CSS only.
</p>
<div id="btn-container">
<a
href="https://github.com/mr2much/webdev/tree/master/todolist"
target="_blank"
class="btn card-link bg-danger text-white"
>GitHub</a
>
<a
href="https://mr2much.github.io/webdev/todolist/html/index"
target="_blank"
class="btn card-link bg-danger text-white"
>Visit Page</a
>
</div>
</div>
</div>
<div id="img-container" class="card text-dark mx-auto">
<div id="tribute-proj" class="thumb-view face face1">
<div class="contenido">
<p>Tribute Page To John Taylor Gatto</p>
</div>
</div>
<div class="face face2">
<h5 class="card-title my-1">Tribute Page For John Taylor Gatto</h5>
<h6 class="card-subtitle mb-2">HTML/CSS</h6>
<p class="card-text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</p>
<div id="btn-container">
<a
href="https://github.com/mr2much/webdev/tree/master/tributepage"
target="_blank"
class="btn card-link bg-danger text-white"
>GitHub</a
>
<a
href="https://mr2much.github.io/webdev/tributepage/html/index"
target="_blank"
class="btn card-link bg-danger text-white"
>Visit Page</a
>
</div>
</div>
</div>
<div id="img-container" class="card text-dark mx-auto">
<div id="survey-proj" class="thumb-view face face1">
<div class="contenido">
<p>Responsive Survey Form</p>
</div>
</div>
<div class="face face2">
<h5 class="card-title my-1">Responsive Survey Form</h5>
<h6 class="card-subtitle mb-2">HTML/CSS</h6>
<p class="card-text">
Lorem ipsum dolor sit amet, consectetur adipisicing elit.
</p>
<div id="btn-container">
<a
href="https://github.com/mr2much/webdev/tree/master/surveyform"
target="_blank"
class="btn card-link bg-danger text-white"
>GitHub</a
>
<a
href="https://mr2much.github.io/webdev/surveyform/html/"
target="_blank"
class="btn card-link bg-danger text-white"
>Visit Page</a
>
</div>
</div>
</div>
<div id="img-container" class="card text-dark mx-auto">
<div id="prodland-proj" class="thumb-view face face1">
<div class="contenido">
<p>Product Landing Page</p>
</div>
</div>
<div class="face face2">
<h5 class="card-title my-1">Product Landing Page Project</h5>
<h6 class="card-subtitle mb-2">HTML/CSS</h6>
<p class="card-text">
This project is something that I wanted to do since 2013.
</p>
<div id="btn-container">
<a
href="https://github.com/mr2much/webdev/tree/master/product"
class="btn card-link bg-danger text-white"
>GitHub</a
>
<a
href="https://mr2much.github.io/webdev/product/html/index"
target="_blank"
class="btn card-link bg-danger text-white"
>Visit Page</a
>
</div>
</div>
</div>
<div id="img-container" class="card text-dark mx-auto">
<div id="imggallery-proj" class="thumb-view face face1">
<div class="contenido">
<p>Image Gallery Project</p>
</div>
</div>
<div class="face face2">
<h5 class="card-title my-1">Image Gallery Project</h5>
<h6 class="card-subtitle mb-2">HTML/CSS</h6>
<p class="card-text">
Just a simple image gallery. With a credit tag from Unsplash that
I customized.
</p>
<div id="btn-container">
<a
href="https://github.com/mr2much/webdev/tree/master/imggallery"
class="btn card-link bg-danger text-white"
>GitHub</a
>
<a
href="https://mr2much.github.io/webdev/imggallery/html/index"
target="_blank"
class="btn card-link bg-danger text-white"
>Visit Page</a
>
</div>
</div>
</div>
<!-- <a target="_blank" href="https://mr2much.github.io/webdev/imggallery/html/index">
<div class="grow" id="imggallery-proj">
<section class="thumb-preview">
<div>
<h1>Image Gallery Project</h1>
<section>
<p>Just a simple image gallery. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod.</p>
</section>
</div>
</section>
</div>
</a> -->
</main>
</div>
<footer class="footer container-fullwidth">
<h1>Contact Me</h1>
<ul id="social-media">
<li><a href="mailto:[email protected]">Email</a></li>
<li class="margin-left">
<a target="_blank" href="https://www.facebook.com/anubis.lockward"
>Facebook</a
>
</li>
<li class="margin-left">
<a target="_blank" href="https://twitter.com/Cold_Dog">Twitter</a>
</li>
<li class="margin-left">
<a target="_blank" href="https://www.linkedin.com/in/anubislockward/"
>LinkedIn</a
>
</li>
<li class="margin-left">
<a target="_blank" href="https://github.com/mr2much">GitHub</a>
</li>
</ul>
<p>Created by <a href="">Anubis Lockward</a></p>
<p>2022. Legal mumbo jumbo</p>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script
src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"
></script>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"
integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
crossorigin="anonymous"
></script>
<script
src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"
integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
crossorigin="anonymous"
></script>
</body>
<script type="text/javascript">
$(document).ready(function () {
console.log('Page ready');
});
</script>
</html>