68 lines
1.9 KiB
HTML
68 lines
1.9 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 id="top" class="site-header">
|
|
<nav class="navbar">
|
|
<div class="nav-left">
|
|
<a href="#top" class="nav-link">The Ravenwood Arts</a>
|
|
</div>
|
|
<div class="nav-right">
|
|
<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>
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
|
|
<section id="title" class="title-section">
|
|
<div class="title-box">
|
|
<div class="title-text">
|
|
<p>Developer Profile</p>
|
|
<h1>Jesse M. Ellis</h1>
|
|
</div>
|
|
<img
|
|
src="images/Profile.png"
|
|
alt="Profile Picture"
|
|
class="profile-pic"
|
|
/>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="about" class="about-section">
|
|
<div class="about-box">
|
|
<div class="about-text">
|
|
<h1 class="about-title">About Me</h1>
|
|
<p class="about-paragraph">Hey this is about me!</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="work" class="work-section">
|
|
<div class="work-box">
|
|
<h2 class="section-title">Previous Work</h2>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="projects" class="projects-section">
|
|
<div class="project-box">
|
|
<h2 class="section-title">Projects</h2>
|
|
</div>
|
|
</section>
|
|
|
|
<section id="contact" class="contact-section">
|
|
<div class="contact-box">
|
|
<h2 class="section-title">Contact</h2>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
</html>
|