From 5c45ecb17be914ffcdae314d36767ffef99a0584 Mon Sep 17 00:00:00 2001 From: KyleDOT Date: Tue, 12 Mar 2024 15:39:09 +0930 Subject: [PATCH] Updating resume page --- resume.html | 21 ++++++++++++++++++--- style.css | 13 ++++++++++++- 2 files changed, 30 insertions(+), 4 deletions(-) diff --git a/resume.html b/resume.html index 8b1c614..f55b17e 100644 --- a/resume.html +++ b/resume.html @@ -6,9 +6,24 @@

Kyle's Resume

- +
+
+

Employment

+

Paspaley Pearling
IT Support Officer
Dec 2017 - Current

+

Area 9 IT Solutions
Level 1 IT Support
Feb 2014 - Dec 2017

+

Education

+

Charles Darwin University
Bachelor of Information Technology
Bachelor of New Media Design
2014 - 2015 (Incomplete)

+

Good Shepherd Lutheran College
Transition to Year 12
2000 - 2013

+
+
+

Certificates

+

ITIL Foundation in IT Service Management
Sep 2017

+

Proficiencies

+



+
+
- \ No newline at end of file + diff --git a/style.css b/style.css index 5297e2b..d32b2f8 100644 --- a/style.css +++ b/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; } \ No newline at end of file +.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; }