Using Html we can create a template for cycle shop. This template consists of a heading as Cycle shop and some links which navigate to other pages like About us, Home, Products, Contact details.For creating this template I have used style tag to style the template and some basic tags like header for adding a heading to the template. To link the template to other pages I have used anchor tag. Here , I used a navigation tag to navigate to provide links to different sections. I used a footer tag to displays copyright information and ensures it’s fixed at the bottom of the page.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cycle Shop</title>
<style>
body {
font-family: Times new roman, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: lavender;
color: black;
text-align: center;
}
nav {
background-color: blue;
text-align: center;
}
nav a {
color: #fff;
text-decoration: none;
margin: 0 10px;
}
nav a:hover {
text-decoration: underline;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
</head>
<body>
<header>
<h1>Cycle Shop</h1>
</header>
<nav>
<a href="#">About Us</a>
<a href="#">Home</a>
<a href="#">Products</a>
<a href="#">Contact Details</a>
</nav>
<div class="container">
<h2>Welcome to Cycle Selling Web Shop</h2>
<p>Here are wide varieties of cycles you can buy with affordable prices.</p>
</div>
<footer>
<p>© 2024 Cycle Shop. All rights reserved.</p>
</footer>
</body>
</html>