-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresume.html
More file actions
93 lines (81 loc) · 3.62 KB
/
Copy pathresume.html
File metadata and controls
93 lines (81 loc) · 3.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Final Project</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="/Assets/css/site.css">
</head>
<body class="bg-rose-200 min-h-screen">
<header class="sticky top-0 z-50 bg-rose-600 text-gray-200 shadow-md">
<div class="max-w-6xl mx-auto flex items-center justify-between p-6">
<h1 class="text-xl font-bold">Jacob Gimpel</h1>
<nav class="flex gap-3">
<a href="index.html" class="px-3 py-1 bg-rose-500 hover:bg-rose-400 rounded text-sm">Home</a>
<a href="resume.html" class="px-3 py-1 bg-rose-500 hover:bg-rose-400 rounded text-sm">Resume</a>
<a href="projects.html" class="px-3 py-1 bg-rose-500 hover:bg-rose-400 rounded text-sm">Projects</a>
<a href="contact.html" class="px-3 py-1 bg-rose-500 hover:bg-rose-400 rounded text-sm">Contact</a>
<a href="about.html" class="px-3 py-1 bg-rose-500 hover:bg-rose-400 rounded text-sm">About</a>
</nav>
</div>
</header>
<main class="max-w-6xl mx-auto p-6">
<div class="flex flex-col md:flex-row gap-8">
<div class="md:w-1/2">
<section class="mt-12">
<h2 class="text-5xl font-bold mb-4">Education</h2>
</section>
<article class="flex items-center border border-black p-6 mb-4 bg-rose-500">
<h2 class="text-3xl font-bold mb-4">Secondary Education</h2>
<div>
<p class="text-lg leading-relaxed">
Completed Year 12 ATAR (2016)
</p>
</div>
</article>
<article class="flex items-center border border-black p-6 mb-4 bg-rose-500">
<h2 class="text-3xl font-bold mb-4">Certificate IV in Cyber Security</h2>
<div>
<p class="text-lg leading-relaxed">
NMTafe East Perth (2024)
</p>
</div>
</article>
<article class="flex items-center border border-black p-6 mb-4 bg-rose-500">
<h2 class="text-3xl font-bold mb-4">Certificate IV in Programming</h2>
<div>
<p class="text-lg leading-relaxed">
NMTafe Perth (Current, due for completion in 2025)
</p>
</div>
</article>
</div>
<div class="md:w-1/2">
<section class="mt-12">
<h2 class="text-5xl font-bold mb-4">Skills</h2>
</section>
<article class="flex items-center border border-black p-6 bg-rose-500">
<h2 class="sr-only">Skills</h2>
<div>
<ul class="list-disc pl-6 text-lg leading-relaxed">
<li>Experience in HTML, CSS and JavaScript</li>
<li>Experience in Python</li>
<li>Experience in C#</li>
<li>Software Development using .NET MAUI and WPF Forms</li>
<li>Configuration and Deployment of Windows Server</li>
<li>Configuring Networks</li>
<li>API Integration & Backend Development</li>
</ul>
</div>
</article>
</div>
</div>
</main>
<footer class="bg-rose-600 text-white w-full fixed bottom-0 p-4">
<div class="max-w-5xl mx-auto">
<span>© Jacob Gimpel</span>
</div>
</footer>
</body>
</html>