<!DOCTYPE html>
<html>
<head>
<style>
BODY
{
color:black;
font-family:arial;
font-size:14pt;
}
header {
background-color:darkred;
color:white;
text-align:center;
padding:5px;
}
nav {
line-height:30px;
background-color:#BFC9CA;
height:500px;
width:100px;
float:left;
padding:5px;
}
section {
width:350px;
float:left;
padding:10px;
}
footer {
background-color:darkred;
color:white;
clear:both;
text-align:center;
padding:5px;
}
</style>
<title>Paris</title>
</head>
<body>
<!-- This webpage displays in standards mode -->
<header>
<h1>City Gallery</h1>
</header>
<nav>
<a href="index.html">Hauptseite</a><br>
<a href="Seite1.html">London</a><br>
<a href="Seite2.html">Paris</a><br>
<a href="Seite3.html">Tokyo</a><br>
</nav>
<section>
<h1>Paris</h1>
<p>This page is about Paris.</p>
<img src="https://www.telegraph.co.uk/content/dam/Travel/hotels/europe/france/paris/eiffel-tower-paris-p.jpg?imwidth=480">
</section>
<footer>
Copyright © perino.org
</footer>
</body>
</html>
Comments (0)
You don't have permission to comment on this page.