-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexperience.html
91 lines (80 loc) · 4.26 KB
/
experience.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Experience - Raydo Matthee</title>
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
</head>
<body class="bg-gray-900 text-white font-sans">
<header class="text-center py-10">
<h1 class="text-4xl font-bold">Experience</h1>
<p class="text-xl mt-3">@burnt-exe</p>
</header>
<nav class="bg-gray-800 py-3">
<ul class="flex justify-center space-x-4">
<li><a href="index.html" class="hover:text-blue-400">Home</a></li>
<li><a href="about.html" class="hover:text-blue-400">About</a></li>
<li><a href="experience.html" class="text-blue-400">Experience</a></li>
<li><a href="education.html" class="hover:text-blue-400">Education</a></li>
<li><a href="skills.html" class="hover:text-blue-400">Skills</a></li>
<li><a href="contact.html" class="hover:text-blue-400">Contact</a></li>
</ul>
</nav>
<section class="container mx-auto px-4 py-10">
<div class="flex flex-col">
<!-- CEO at Skunkworks (Pty) Ltd -->
<div class="mb-8">
<div class="flex items-center mb-2">
<i class="fas fa-briefcase mr-2"></i>
<h3 class="text-xl font-semibold">CEO at Skunkworks (Pty) Ltd</h3>
</div>
<p class="text-gray-400">Oct 2020 - Present</p>
<p class="mt-2">Leading efforts in managed cloud services, training division, application development and integration.</p>
</div>
<!-- Company Owner at Bluemix (Pty) Ltd -->
<div class="mb-8">
<div class="flex items-center mb-2">
<i class="fas fa-briefcase mr-2"></i>
<h3 class="text-xl font-semibold">Company Owner at Bluemix (Pty) Ltd</h3>
</div>
<p class="text-gray-400">Oct 2018 - Present</p>
<p class="mt-2">Providing IT instructor sourcing and customized training solutions, ensuring customer satisfaction.</p>
</div>
<!-- Co-Founder at Pause Online (Pty) Ltd -->
<div class="mb-8">
<div class="flex items-center mb-2">
<i class="fas fa-briefcase mr-2"></i>
<h3 class="text-xl font-semibold">Co-Founder at Pause Online (Pty) Ltd</h3>
</div>
<p class="text-gray-400">Jan 2014 - Present</p>
<p class="mt-2">Launching and growing a digital marketing agency, focusing on website design and digital marketing strategies.</p>
</div>
<!-- Owner at Aero & General Properties (Pty) Ltd -->
<div class="mb-8">
<div class="flex items-center mb-2">
<i class="fas fa-briefcase mr-2"></i>
<h3 class="text-xl font-semibold">Owner at Aero & General Properties (Pty) Ltd</h3>
</div>
<p class="text-gray-400">Sep 2013 - Present</p>
<p class="mt-2">Managing low income rentals and property development, focusing on customer support and service.</p>
</div>
<!-- Executive Director at O.C Operations Central (Pty) Ltd -->
<div class="mb-8">
<div class="flex items-center mb-2">
<i class="fas fa-briefcase mr-2"></i>
<h3 class="text-xl font-semibold">Executive Director at O.C Operations Central (Pty) Ltd</h3>
</div>
<p class="text-gray-400">Feb 2015 - Sep 2019</p>
<p class="mt-2">Providing strategic advice on security risks and real estate preservation, helping clients avert risks.</p>
</div>
<!-- More experiences can be added here -->
</div>
</section>
<footer class="text-center py-6 border-t border-gray-800 mt-10">
<p>© 2024 burnt.exe. All rights reserved.</p>
<p>Powered by Skunkworks creativity and innovation.</p>
</footer>
</body>
</html>