Alchemist sports club & news html
Here is an example of an HTML template for an Alchemist Sports Club & News website:
index.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alchemist Sports Club & News</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a rel="nofollow" target="_blank" href="#home">Home</a></li>
<li><a rel="nofollow" target="_blank" href="#news">News</a></li>
<li><a rel="nofollow" target="_blank" href="#teams">Teams</a></li>
<li><a rel="nofollow" target="_blank" href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Welcome to Alchemist Sports Club & News</h1>
<p>Stay up-to-date with the latest news and updates from our sports club.</p>
<button>Learn More</button>
</section>
<section id="news">
<h1>Latest News</h1>
<ul>
<li>
<h2>Team Wins Championship</h2>
<p>Our team has won the championship title in the latest tournament.</p>
<button>Read More</button>
</li>
<li>
<h2>New Player Joins the Team</h2>
<p>We are excited to welcome our new player to the team.</p>
<button>Read More</button>
</li>
</ul>
</section>
<section id="teams">
<h1>Our Teams</h1>
<ul>
<li>
<h2>Men's Team</h2>
<p>Our men's team is one of the strongest in the league.</p>
</li>
<li>
<h2>Women's Team</h2>
<p>Our women's team is a force to be reckoned with.</p>
</li>
</ul>
</section>
<section id="contact">
<h1>Get in Touch</h1>
<p>Want to learn more about our sports club or get involved? Contact us!</p>
<form>
<input type="text" placeholder="Name">
<input type="email" placeholder="Email">
<textarea placeholder="Message"></textarea>
<button>Send</button>
</form>
</section>
</main>
<footer>
<p>© 2023 Alchemist Sports Club & News</p>
</footer>
<script src="script.js"></script>
</body>
</html>
styles.css
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 1em;
text-align: center;
}
nav ul {
list-style: none;
margin: 0;
padding: 0;
display: flex;
justify-content: space-between;
}
nav li {
margin-right: 20px;
}
nav a {
color: #fff;
text-decoration: none;
}
main {
display: flex;
flex-direction: column;
align-items: center;
padding: 2em;
}
section {
background-color: #f7f7f7;
padding: 2em;
margin-bottom: 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
font-size: 24px;
margin-top: 0;
}
button {
background-color: #4CAF50;
color: #fff;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #3e8e41;
}
footer {
background-color: #333;
color: #fff;
padding: 1em;
text-align: center;
clear: both;
}
This is just a basic template, and you can customize it to fit your needs. You can add more sections, styles, and functionality as needed.
Note: This template uses a simple layout and design, and you may want to add more visual elements, such as images, icons, and graphics, to make it more visually appealing.