progWeb/where_to_go.html
2022-12-22 14:31:44 +01:00

32 lines
No EOL
973 B
HTML

<!DOCTYPE HTML>
<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>
<main>
<section>
<h1>Where To Go ?</h1>
<article>
<a href="islands.html" style="float: left;">Islands</a>
<img src="photos/islands_map.png">
</article>
<article>
<a href="mainland.html" style="float: left;">Mainland</a>
<img src="photos/map_greece.png">
</article>
</section>
</main>
</body>
</html>