Untitled
unknown
plain_text
2 years ago
2.1 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>Your T-Shirt Brand</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#products">Products</a></li>
<li><a href="#about">About Us</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Your T-Shirt Brand</h1>
<p>Welcome to our online store! Check out our amazing collection of t-shirts.</p>
<a href="#products" class="btn">Shop Now</a>
</section>
<section id="products">
<h2>Our Products</h2>
<div class="product">
<img src="tshirt1.jpg" alt="T-Shirt 1">
<h3>T-Shirt 1</h3>
<p>Price: $XX.XX</p>
</div>
<div class="product">
<img src="tshirt2.jpg" alt="T-Shirt 2">
<h3>T-Shirt 2</h3>
<p>Price: $XX.XX</p>
</div>
<!-- Add more product cards as needed -->
</section>
<section id="about">
<h2>About Us</h2>
<p>Write about your t-shirt brand and its story here.</p>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>If you have any questions or inquiries, please feel free to contact us.</p>
<form>
<input type="text" placeholder="Name">
<input type="email" placeholder="Email">
<textarea placeholder="Message"></textarea>
<button type="submit" class="btn">Send Message</button>
</form>
</section>
</main>
<footer>
<p>© 2023 Your T-Shirt Brand. All rights reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>
Editor is loading...