-
Notifications
You must be signed in to change notification settings - Fork 0
/
aboutMe.html
108 lines (95 loc) · 5.01 KB
/
aboutMe.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
<!DOCTYPE html>
<html lang="en-GB">
<head>
<title>Milo Clack Portfolio</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://kit.fontawesome.com/f1113e7579.js" crossorigin="anonymous"></script>
<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=Merriweather:ital@1&family=Oswald:wght@500&family=Rubik:ital@1&display=swap" rel="stylesheet">
<link rel="stylesheet" href="normalize.css" type="text/css" />
<link rel="stylesheet" href="styles.css" type="text/css" />
<script defer src="index.js"></script>
</head>
<body>
<!-- FIXED NAV BAR -->
<nav>
<div class="button">
<a href="index.html">HOME</a>
</div>
<div class="button">
<a href="aboutMe.html">ABOUT ME</a>
</div>
<div class="button emailBtn">
<a class="tooltip">MILOCLACK@GMAIL.COM<span class="tooltipText">Email Copied!</span></a>
</div>
</nav>
<!-- ABOUT ME SECTION -->
<div class="selfie-plus-about">
<main class="about-me">
<div class="about-story">
<div class="about-story-text">
<h2>The Story So Far...</h2>
<p>
My vast journey through this corporeal dimension led me to a top 10 global coding bootcamp with
iO Academy. I've applied myself across the full stack, mainly using HTML, CSS, JavaScript and PHP among
a selection of frameworks and libraries like React, Bootstrap, Slim and SCSS. I've already adopted a
multitude of crucial coding conventions and habits in the form of design patterns and coding principles.
This has proven to be an important catalyst in my dev development.<br><br>I've been lucky to work in
a great team of 8 at the Academy and have participated in pair programming with all of them. I've also
been involved in sprint planning sessions as a whole dev team. I'm a certified Scrum Master through the
Scrum Alliance, and I was Scrum Master for the Academy Portal project, but have applied agile
methodologies to every team project I've participated in.
</p>
</div>
<div class="selfie-div">
<img class="selfie" src="assets/codingSelfiePortrait.jpeg"/>
</div>
</div>
<div class="about-interests">
<div class="selfie-div">
<img class="selfie selfieLeft" src="assets/performanceSelfie.jpg"/>
</div>
<div class="about-interests-text">
<h2>My Interests...</h2>
<p>
The Holy trinity in The Church of Milo is simple: Music, Gaming and CODING!<br><br>
For most of my life I've been obsessed with music and have always been enthralled by the
creative process. I'm constantly looking to create something new and just love to set myself
a challenge or try to approach writing differently. One thing I've learned while coding
is that I have the same mentality here.<br><br>I have really loved experimenting with different
ways of solving problems and figuring out the limitations of each approach. I really do get a
kick out of improving my code, and take great pride in making my work neat, dynamic and DRY.
</p>
</div>
</div>
<div class="about-aspirations">
<div class="about-aspirations-text">
<h2>My Aspirations...</h2>
<p>
Although I'm naturally more suited to working in the back-end, I have loved seeing the connection between
client and server and find linking it all together very satisfying. The prospect of furthering my skills
across the full stack really excites me, and I've never been one to shy away from trying something new.
As long as I'm somewhere that sets healthy habits, takes pride in their work and pushes me to improve
then I'll be very content.<br><br>
As it stands, the world of coding is an ocean of possibilities, and I want to expose myself to as much of
it as I can to really hone in on what it is I excel at and enjoy the most.
</p>
</div>
<div class="selfie-div">
<img class="selfie" src="assets/gamingSelfiePortrait.jpeg"/>
</div>
</div>
</main>
</div>
<!-- SOCIAL LINKS FIXED TO RIGHT SIDE -->
<div class="socialLinks">
<aside>
<a href="https://github.com/mclack" class="socialLink fab fa-github-square" target="_blank"></a>
</aside>
<aside>
<a href="https://www.linkedin.com/in/milo-clack-69549621a/" target="_blank" class="socialLink fab fa-linkedin"></a>
</aside>
</div>
</body>
</html>