mirror of
https://github.com/ION606/static-site-hosting.git
synced 2026-05-14 22:16:54 +00:00
26 lines
517 B
HTML
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> |