Skip to content

Commit

Permalink
Create education.html
Browse files Browse the repository at this point in the history
  • Loading branch information
burnt-exe authored Mar 17, 2024
1 parent c9b39e7 commit 515be38
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions education.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Education - Raydo Matthee</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Raydo Matthee's Education</h1>
</header>

<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="experience.html">Experience</a></li>
<li><a href="education.html">Education</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>

<main>
<section class="education-section">
<h2>Master of Business Administration - Tech Management</h2>
<p>XYZ University, 2015 - 2017</p>
<p>Graduated with honors, completed a thesis on the impact of cloud computing on modern businesses.</p>
</section>

<section class="education-section">
<h2>Bachelor of Science in Computer Science</h2>
<p>ABC College, 2010 - 2014</p>
<p>Specialized in software development and data structures. Involved in various tech clubs and coding competitions.</p>
</section>

<!-- Additional education entries can be added here -->
</main>

<footer>
<p>Connect with me on <a href="https://github.com/burnt-exe">GitHub @burnt-exe</a></p>
</footer>

<script src="script.js"></script>
</body>
</html>

0 comments on commit 515be38

Please sign in to comment.