Updating resume page
This commit is contained in:
parent
2efeb6f035
commit
5c45ecb17b
21
resume.html
21
resume.html
@ -6,9 +6,24 @@
|
||||
</head>
|
||||
<body>
|
||||
<h1>Kyle's Resume</h1>
|
||||
|
||||
<div class="container_resume">
|
||||
<div class="employment">
|
||||
<h2>Employment</h2>
|
||||
<p><b>Paspaley Pearling</b><br>IT Support Officer<br>Dec 2017 - Current</p>
|
||||
<p><b>Area 9 IT Solutions</b><br>Level 1 IT Support<br>Feb 2014 - Dec 2017</p>
|
||||
<h2>Education</h2>
|
||||
<p><b>Charles Darwin University</b><br>Bachelor of Information Technology<br>Bachelor of New Media Design<br>2014 - 2015 (Incomplete)</p>
|
||||
<p><b>Good Shepherd Lutheran College</b><br>Transition to Year 12<br>2000 - 2013</p>
|
||||
</div>
|
||||
<div class="skills">
|
||||
<h2>Certificates</h2>
|
||||
<p><b>ITIL Foundation in IT Service Management</b><br>Sep 2017</p>
|
||||
<h2>Proficiencies</h2>
|
||||
<p><b></b><br><br></p>
|
||||
</div>
|
||||
</div>
|
||||
<footer>
|
||||
<p>Made by Kyle - Last updated: 2023/10/24</p>
|
||||
<p>Made by Kyle - Last updated: 2024/03/12</p>
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
</html>
|
||||
|
13
style.css
13
style.css
@ -29,4 +29,15 @@ a {color: white;font-family: Tahoma, Verdana, sans-serif;text-align: center;}
|
||||
"projects games";
|
||||
}
|
||||
.projects { grid-area: projects; }
|
||||
.games { grid-area: games; }
|
||||
.games { grid-area: games; }
|
||||
|
||||
.container_resume { display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-template-rows: 1fr 1fr;
|
||||
gap: 0px 0px;
|
||||
grid-auto-flow: row;
|
||||
grid-template-areas:
|
||||
"employment skills";
|
||||
}
|
||||
.employment { grid-area: employment; }
|
||||
.skills { grid-area: skills; }
|
||||
|
Loading…
Reference in New Issue
Block a user