You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<title>My Website</title>
<style>
body {
background-image: url('background-image.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
</style>
</head>
<body>
<header>
<h1>Welcome to my website!</h1>
<nav>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#services">Services</a></li>
<li><a href="#contact">Contact</a></li>
<li><a href="https://www.example.com" target="_blank">New
Blank Site</a></li>
</ul>
</nav>
</header>
<main>
<section id="about">
<h2>About Me</h2>
<p>I am a web developer and I love creating websites.</p>
</section>
<section id="services">
<h2>Services</h2>
<ul>
<li>Web design</li>
<li>Web development</li>
<li>SEO optimization</li>
</ul>
</section>
<section id="contact">
<h2>Contact Me</h2>
<p>Email: example@email.com</p>
</section>
</main>
<footer>
<p>&copy; 2023 My Website</p>
</footer>
</body>
</html>

You might also like