35 lines
725 B
HTML
35 lines
725 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="fr">
|
||
|
|
<head>
|
||
|
|
<title>Melies</title>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
||
|
|
<style>
|
||
|
|
html, body {
|
||
|
|
background-color: #000;
|
||
|
|
margin: 0px;
|
||
|
|
padding: 0px;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
#info {
|
||
|
|
position: absolute;
|
||
|
|
top: 0px; width: 100%;
|
||
|
|
color: #ffffff;
|
||
|
|
padding: 5px;
|
||
|
|
font-family:Monospace;
|
||
|
|
font-size:13px;
|
||
|
|
font-weight: bold;
|
||
|
|
text-align:center;
|
||
|
|
}
|
||
|
|
|
||
|
|
a {
|
||
|
|
color: #ffffff;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="info"><a href="theatre.html">Théâtre</a> - <a href="montreuil_1.html">Montreuil 1</a> - <a href="montreuil_2.html">Montreuil 2</a></div>
|
||
|
|
</body>
|
||
|
|
</html>
|