progWeb/where_to_go.html
2022-12-12 10:46:38 +01:00

37 lines
No EOL
973 B
HTML

<!DOCTYPE HTML>
<!--TEST-->
<html>
<head>
<link rel="stylesheet" href="css/text.css">
<title>Where To Go?</title>
</head>
<body>
<header>
<nav class="B">
<a href = "main.html">Main Page</a>
<a href = "where_to_go.html">Where To Go</a>
<a href = "history_mythology.html">History and Mythology</a>
<a href = "food_lifestyle.html">Food and Lifestyle</a>
<a href = "faq.html">Frequently Asked Questions</a>
</nav>
</header>
<hr>
<main>
<section>
<article>
<h1>Where To Go ?</h1>
<a href="islands.html">Islands</a>
</article>
</section>
<section>
<article>
<a href="mainland.html">Mainland</a>
</article>
</section>
</main>
<hr>
<footer>
<p>© Copyright 2022 by 3MIC. All Rights Reserved.</p>
</footer>
</body>
</html>