Website
Gaming productunknown
plain_text
9 months ago
19 kB
7
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gaming Hub</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to Gaming Hub</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#reviews">Reviews</a></li>
<li><a href="#news">News</a></li>
<li><a href="#about">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h2>Latest Games</h2>
<p>Check out the latest games in the industry!</p>
</section>
<section id="reviews">
<h2>Game Reviews</h2>
<article>
<h3>Game Title 1</h3>
<p>This is a brief review of Game Title 1.</p>
</article>
<article>
<h3>Game Title 2</h3>
<p>This is a brief review of Game Title 2.</p>
</article>
</section>
<section id="news">
<h2>Gaming News</h2>
<p>Stay updated with the latest news in gaming!</p>
</section>
<section id="about">
<h2>About Us</h2>
<p>We are passionate gamers sharing our love for games!</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<form>
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" required></textarea>
<button type="submit">Send</button>
</form>
</section>
</main>
<footer>
<p>© 2023 Gaming Hub. All rights reserved.</p>
</footer>
</body>
</html>Editor is loading...
Leave a Comment