Project Files
test-docs / about-page.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>About MyProject</title>
<script>console.log("analytics")</script>
<style>.hidden { display: none; }</style>
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="/about">About</a>
<a href="/docs">Docs</a>
</nav>
<header>
<h1>About MyProject</h1>
</header>
<main>
<p>MyProject is a modern API platform launched in 2024.</p>
<h2>Our Mission</h2>
<p>We make API development simple and accessible for everyone.</p>
<h2>Team</h2>
<ul>
<li>Alice Johnson — CEO & Founder</li>
<li>Bob Smith — Lead Developer</li>
<li>Charlie Brown — DevOps Engineer</li>
<li>Diana Prince — Head of Product</li>
</ul>
<h2>Contact</h2>
<p>Email: <a href="mailto:info@myproject.dev">info@myproject.dev</a></p>
<p>Address: 123 API Street, San Francisco, CA 94102</p>
</main>
<footer>
<p>© 2025 MyProject Inc. All rights reserved.</p>
</footer>
</body>
</html>