Untitled

 avatar
unknown
plain_text
2 years ago
678 B
1
Indexable
<!DOCTYPE html>
<html>
<head>
<title>House Decor</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<h1>House Decor</h1>
</header>
<main>
<section id="products">
<h2>Products</h2>
<ul>
<li><a href="#">Chairs</a></li>
<li><a href="#">Sofas</a></li>
<li><a href="#">Tables</a></li>
<li><a href="#">Beds</a></li>
<li><a href="#">Curtains</a></li>
<li><a href="#">Mirrors</a></li>
<li><a href="#">Art</a></li>
</ul>
</section>
<section id="contact">
<h2>Contact Us</h2>
<p>123 Main Street</p>
<p>Anytown, CA 12345</p>
<p>123-456-7890</p>
<p>info@housedecor.com</p>
</section>
</main>
<footer>
<p>Copyright &copy; 2023 House Decor</p>
</footer>
</body>
</html>
Editor is loading...