Updating resume page

This commit is contained in:
KyleDOT 2024-03-12 15:39:09 +09:30
parent 2efeb6f035
commit 5c45ecb17b
2 changed files with 30 additions and 4 deletions

View File

@ -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>

View File

@ -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; }