43 lines
1.8 KiB
HTML
43 lines
1.8 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<link rel="stylesheet" href="styles.css">
|
||
|
<title>Portfolio Page</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<header>
|
||
|
<p id="site-name">My Portfolio</p>
|
||
|
<navbar id="navbar">
|
||
|
<a href="#welcome-section">Welcome</a>
|
||
|
<a href="#projects">Projects</a>
|
||
|
<a href="#contact">Contact Me</a>
|
||
|
</navbar>
|
||
|
</header>
|
||
|
<section id="welcome-section">
|
||
|
<h1>Welcome to my online portfolio</h1>
|
||
|
<p>I am an aspiring web developer looking to solve puzzles and express my creativity through writing code. I hope to help others learn as I continue to learn as well, so that we can grow together.
|
||
|
</p>
|
||
|
<p>
|
||
|
Please feel free to take a look at my projects below to get a better understanding of my work</p>
|
||
|
<p>Feel free to get in touch if you have a question about anything I've worked on, I've listed two contact methods below</p>
|
||
|
<p>👋 have a great day!</p>
|
||
|
</section>
|
||
|
<section id="projects">
|
||
|
<h2>Projects</h2>
|
||
|
<div class="project-tile">
|
||
|
<img src="https://raw.githubusercontent.com/rainydayemma/qr-code-component/refs/heads/main/screenshot.jpg" alt="A screenshot of the completed QR code component project from front end mentor">
|
||
|
<p>QR Code Component - Frontend Mentor</p>
|
||
|
<a href="https://github.com/rainydayemma/qr-code-component/tree/main">github repo</a>
|
||
|
</div>
|
||
|
</section>
|
||
|
<section id="contact">
|
||
|
<h2>Let's get in touch!</h2>
|
||
|
<ul>
|
||
|
<li><a id="profile-link" href="https://www.freecodecamp.org/rainydayemma" target="_blank">freeCodeCamp profile</a></li>
|
||
|
<li><a id="profile-link" href="https://github.com/rainydayemma" target="_blank">github account</a></li>
|
||
|
</section>
|
||
|
</body>
|
||
|
</html>
|