Goodwuestion
Goodwuestion
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<style>
body {
background-color: #121212;
color: #ffffff;
margin: 0;
padding: 0;
header {
background-color: #1f1f1f;
padding: 20px;
text-align: center;
nav {
display: flex;
justify-content: center;
background-color: #333;
nav a {
color: #ffffff;
padding: 14px 20px;
text-decoration: none;
text-align: center;
nav a:hover {
background-color: #575757;
section {
padding: 20px;
footer {
background-color: #1f1f1f;
text-align: center;
padding: 10px;
position: fixed;
width: 100%;
bottom: 0;
.section-title {
font-size: 24px;
margin-bottom: 10px;
background-color: #2b2b2b;
margin: 10px 0;
padding: 10px;
}
</style>
</head>
<body>
<header>
</header>
<nav>
<a href="#home">Home</a>
<a href="#projects">Projects</a>
<a href="#blog">Blog</a>
<a href="#gallery">Gallery</a>
<a href="#contact">Contact</a>
<a href="#resume">Resume</a>
<a href="#testimonials">Testimonials</a>
<a href="#services">Services</a>
<a href="#faq">FAQ</a>
</nav>
<section id="home">
<h2 class="section-title">Home</h2>
<p>Welcome to my personal webpage. Here you will find information about me, my
projects, and more.</p>
</section>
<section id="about">
<p>Hi, I'm Brody Watson, also known as Brodusnuttz. [Add more about yourself here]</p>
</section>
<section id="projects">
<h2 class="section-title">Projects</h2>
</section>
<section id="blog">
<h2 class="section-title">Blog</h2>
</section>
<section id="gallery">
<h2 class="section-title">Gallery</h2>
</section>
<section id="contact">
<h2 class="section-title">Contact</h2>
<p>Email: [email protected]</p>
</section>
<section id="resume">
<h2 class="section-title">Resume</h2>
<p>[Add your resume content here]</p>
</section>
<section id="testimonials">
<h2 class="section-title">Testimonials</h2>
</section>
<section id="services">
<h2 class="section-title">Services</h2>
</section>
<section id="faq">
<h2 class="section-title">FAQ</h2>
</section>
<footer>
</footer>
</body>
</html>