@zeix/ui-element
Version:
UIElement - a HTML-first library for reactive Web Components
31 lines • 927 B
HTML
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact Us</title>
</head>
<body>
<header>
<nav>
<a href="/test/mock/home.html">Home</a>
<a href="/test/mock/about.html">About</a>
<a href="/test/mock/contact.html">Contact</a>
</nav>
</header>
<main>
<h1>Contact Information</h1>
<p>This is the contact page content for testing context-router navigation.</p>
<p>Email: info@example.com</p>
<p>Phone: (555) 123-4567</p>
<a href="/test/mock/home.html">Back to Home</a>
<a href="/test/mock/about.html">Learn About Us</a>
</main>
<aside>
<h2>Office Hours</h2>
<p>Monday - Friday: 9 AM - 5 PM</p>
<p>Saturday: 10 AM - 2 PM</p>
<p>Sunday: Closed</p>
</aside>
</body>
</html>