0% found this document useful (0 votes)
12 views

Code HTML

Uploaded by

smhmaximus
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views

Code HTML

Uploaded by

smhmaximus
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

<!

DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>XFL</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
}
header {
background-color: #222;
color: #fff;
padding: 20px 0;
text-align: center;
}
header h1 {
margin: 0;
font-size: 2.5em;
}
nav ul {
list-style-type: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-weight: bold;
}
section {
padding: 50px;
text-align: center;
}
.about, .projects, .contact {
background-color: #fff;
margin: 20px auto;
border-radius: 8px;
max-width: 800px;
padding: 30px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h2 {
color: #444;
font-size: 2em;
margin-bottom: 20px;
}
.projects ul {
list-style-type: none;
padding: 0;
}
.projects ul li {
background-color: #f9f9f9;
margin: 10px 0;
padding: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
footer {
background-color: #222;
color: #fff;
padding: 20px 0;
text-align: center;
margin-top: 40px;
}
footer p {
margin: 0;
}
</style>
</head>
<body>
<header>
<h1>XFL</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>

<section id="about" class="about">


<h2>About XFL</h2>
<p>XFL is an emerging force in the world of football games, bringing excitement and
innovation to the field. With a passion for sports, gaming, and creative design,
XFL stands for both competitive spirit and cutting-edge experiences.</p>
</section>

<section id="projects" class="projects">


<h2>Projects</h2>
<ul>
<li><strong>Football Simulation Game</strong> - A high-stakes flag football game
that captures the essence of competitive football. Available on Roblox.</li>
<li><strong>The Blue Mountain Chronicles</strong> - A webtoon series that follows
Shiloh on his adventures in the mystical Blue Mountain.</li>
</ul>
</section>

<section id="contact" class="contact">


<h2>Contact</h2>
<p>For inquiries, collaborations, or just to say hello, feel free to reach out
at:</p>
<p><strong>Email:</strong> [email protected]</p>
</section>

<footer>
<p>&copy; 2024 XFL. All rights reserved.</p>
</footer>
</body>
</html>

You might also like