<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Web Application</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to My Web Application</h1>
</header>
<main>
<section>
<h2>About</h2>
<p>This is a basic web application template.</p>
</section>
<section>
<h2>Features</h2>
<ul>
<li>Feature 1</li>
<li>Feature 2</li>
<li>Feature 3</li>
</ul>
</section>
</main>
<footer>
<p>© 2023 My Web Application</p>
</footer>
<script src="script.js"></script>
</body>
</html>