42 lines
1.2 KiB
HTML
42 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
|
|
<title>MyWebsite</title>
|
|
<link rel="stylesheet" href="style.css" />
|
|
<script defer src="site.js"></script>
|
|
</head>
|
|
<body>
|
|
<header class="site-header">
|
|
<nav class="navbar">
|
|
<a href="#about" class="nav-link">About</a>
|
|
<a href="#work" class="nav-link">Work</a>
|
|
<a href="#projects" class="nav-link">Projects</a>
|
|
<a href="#contact" class="nav-link">Contact</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<section id="title" class="title-section">
|
|
|
|
</section>
|
|
|
|
<section id="about" class="about-section">
|
|
<h1 class="section-title">About Me</h1>
|
|
</section>
|
|
|
|
<section id="work" class="work-section">
|
|
<h2 class="section-title">Previous Work</h2>
|
|
</section>
|
|
|
|
<section id="projects" class="projects-section">
|
|
<h2 class="section-title">Projects</h2>
|
|
</section>
|
|
|
|
<section id="contact" class="contact-section">
|
|
<h2 class="section-title">Contact</h2>
|
|
</section>
|
|
</body>
|
|
</html>
|