-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
47 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |