1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" >
<head>
<title>Mon site</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel ="stylesheet" type="text/css" href="menu5_css.css">
<script type="text/javascript">
<!--
function agrandir() {
document.getElementById("principale" ).style.height += 530;
}
// -->
</script>
</head>
<body onLoad="agrandir()">
<div id="tete">
<div id="logo"></div>
<div id="titre">
<p>Application de gestion</p>
</div>
</div>
<ul id="menu"></ul>
<div id="principale" style="height: 20px;">
<p id="coucou" style="margin-top: 200px;">coucouuuuuuuuuuuuuu</p>
<div id="footer">
<p>Copyright</p>
</div>
</div>
</body>
</html> |