Added Figma design and initial navbar work
This commit is contained in:
@@ -0,0 +1,37 @@
|
||||
<!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="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>
|
||||
Reference in New Issue
Block a user