Files
2025-02-14 22:37:52 -05:00

26 lines
517 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>About Us</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
</nav>
</header>
<main>
<p>This is the about page. Learn more about us here!</p>
<button id="click-me">Click Me</button>
</main>
<script src="script.js"></script>
</body>
</html>