xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<h1>Welcome to My Website</h1>
</header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<main>
<section>
<h2>About</h2>
<p>Welcome to my website! This is a sample HTML template.</p>
</section>
<section>
<h2>Services</h2>
<ul>
<li>Web Design</li>
<li>Graphic Design</li>
<li>SEO</li>
</ul>
</section>
<section>
<h2>Contact</h2>
<form>
<input type="text" placeholder="Name">
<input type="email" placeholder="Email">
<textarea placeholder="Message"></textarea>
<input type="submit" value="Submit">
</form>
</section>
</main>
<footer>
<p>© 2022 My Website. All rights reserved.</p>
</footer>
</body>
</html>
xxxxxxxxxx
.top {
position: fixed;
background-color: #344e41;
text-align: center;
top: 0;
left: 0;
width: 100%;
}
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>My Free HTML Template</title>
<!-- Add CSS styles and other necessary meta tags here -->
</head>
<body>
<!-- Add your template content here -->
<h1>Welcome to My Free HTML Template!</h1>
<p>This is a sample paragraph.</p>
<!-- Add more HTML elements as needed -->
</body>
</html>
xxxxxxxxxx
<!DOCTYPE html>
<html>
<head>
<title>Free HTML/CSS Template</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<!-- Your content goes here -->
<script src="script.js"></script>
</body>
</html>