mirror of
https://github.com/rybbit-io/rybbit.git
synced 2025-05-19 15:54:17 +02:00
28 lines
No EOL
781 B
HTML
28 lines
No EOL
781 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Test Site - About</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>About Us</h1>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="index.html">Home</a></li>
|
|
<li><a href="about.html">About</a></li>
|
|
<li><a href="contact.html">Contact</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
<p>This is the about page of the test site. Here you can learn more about us.</p>
|
|
</main>
|
|
<footer>
|
|
<p>© 2025 Test Site</p>
|
|
</footer>
|
|
<script src="http://localhost:3001/script.js"></script>
|
|
</body>
|
|
</html> |