This commit is contained in:
Georgia Koutsodima 2022-12-12 09:03:04 +01:00
commit 77cae1c768
4 changed files with 20 additions and 17 deletions

View file

@ -1,16 +1,17 @@
<!DOCTYPE HTML> <!DOCTYPE HTML>
<html> <html>
<head> <head>
<link rel="stylesheet" href="css/text.css">
<title>Islands</title> <title>Islands</title>
</head> </head>
<body class="A"> <body class="A">
<header class="B"> <header class="B">
<nav> <nav>
<a href>Main Page</a> <a href = "main.html">Main Page</a>
<a href>Where To Go</a> <a href = "where_to_go.html">Where To Go</a>
<a href>History</a> <a href = "history_mythology.html">History</a>
<a href>Food and Lifestyle</a> <a href>Food and Lifestyle</a>
<a href>Frequently Asked Questions</a> <a href = "faq.html">Frequently Asked Questions</a>
</nav> </nav>
</header> </header>
<hr> <hr>

View file

@ -6,7 +6,6 @@
<link rel="stylesheet" href="css/text.css"> <link rel="stylesheet" href="css/text.css">
</head> </head>
<body> <body>
<header> <header>
<nav class="B"> <nav class="B">
<a href = "main.html">Main Page</a> <a href = "main.html">Main Page</a>
@ -23,8 +22,8 @@
</article> </article>
</section> </section>
</main> </main>
</body>
<footer> <footer>
<p>© Copyright 2022 by 3MIC. All Rights Reserved</p> <p>© Copyright 2022 by 3MIC. All Rights Reserved</p>
</footer> </footer>
</body>
</html> </html>

View file

@ -1,6 +1,7 @@
<!DOCTYPE HTML> <!DOCTYPE HTML>
<html> <html>
<head> <head>
<link rel="stylesheet" href="css/text.css">
<title>Mainland</title> <title>Mainland</title>
</head> </head>
<body class="A"> <body class="A">

View file

@ -2,19 +2,21 @@
<!--TEST--> <!--TEST-->
<html> <html>
<head> <head>
<link rel="stylesheet" href="css/text.css">
<title>Where To Go?</title> <title>Where To Go?</title>
<body class="A"> </head>
<header class="B"> <body>
<nav> <header>
<a href>Main Page</a> <nav class="B">
<a href>Where To Go</a> <a href = "main.html">Main Page</a>
<a href>History</a> <a href = "where_to_go.html">Where To Go</a>
<a href = "history_mythology.html">History</a>
<a href>Food and Lifestyle</a> <a href>Food and Lifestyle</a>
<a href>Frequently Asked Questions</a> <a href = "faq.html">Frequently Asked Questions</a>
</nav> </nav>
</header> </header>
<hr> <hr>
<main class="B"> <main>
<section> <section>
<article> <article>
<h1>Where To Go ?</h1> <h1>Where To Go ?</h1>
@ -28,7 +30,7 @@
</section> </section>
</main> </main>
<hr> <hr>
<footer class="B"> <footer>
<p>© Copyright 2022 by 3MIC. All Rights Reserved.</p> <p>© Copyright 2022 by 3MIC. All Rights Reserved.</p>
</footer> </footer>
</body> </body>