<!
DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Brody Watson's Personal Webpage</title>
<style>
body {
background-color: #121212;
color: #ffffff;
font-family: Arial, sans-serif;
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;
.project, .blog-post, .gallery-item, .testimonial, .faq-item {
background-color: #2b2b2b;
margin: 10px 0;
padding: 10px;
}
</style>
</head>
<body>
<header>
<h1>Brody Watson's Personal Webpage</h1>
</header>
<nav>
<a href="#home">Home</a>
<a href="#about">About Me</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">
<h2 class="section-title">About Me</h2>
<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>
<div class="project">Project 1: [Description]</div>
<div class="project">Project 2: [Description]</div>
<!-- Add more projects as needed -->
</section>
<section id="blog">
<h2 class="section-title">Blog</h2>
<div class="blog-post">Blog Post 1: [Content]</div>
<div class="blog-post">Blog Post 2: [Content]</div>
<!-- Add more blog posts as needed -->
</section>
<section id="gallery">
<h2 class="section-title">Gallery</h2>
<div class="gallery-item">Image 1: [Description]</div>
<div class="gallery-item">Image 2: [Description]</div>
<!-- Add more gallery items as needed -->
</section>
<section id="contact">
<h2 class="section-title">Contact</h2>
<p>Email: [email protected]</p>
<p>Phone: (123) 456-7890</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>
<div class="testimonial">Testimonial 1: [Content]</div>
<div class="testimonial">Testimonial 2: [Content]</div>
<!-- Add more testimonials as needed -->
</section>
<section id="services">
<h2 class="section-title">Services</h2>
<p>[Describe the services you offer]</p>
</section>
<section id="faq">
<h2 class="section-title">FAQ</h2>
<div class="faq-item">FAQ 1: [Question]</div>
<div class="faq-item">FAQ 2: [Question]</div>
<!-- Add more FAQs as needed -->
</section>
<footer>
© 2024 Brody Watson. All rights reserved.
</footer>
</body>
</html>