36 lines
881 B
HTML
36 lines
881 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link href="style.css" rel="stylesheet" type="text/css">
|
|
|
|
|
|
<title>KAZ : Aperçu</title>
|
|
<meta charset="UTF-8">
|
|
</head>
|
|
<body>
|
|
<div id="entete">
|
|
<h1> Le numérique éthique et local </h1>
|
|
<p> Ci-dessous se trouve ......... </p>
|
|
</div>
|
|
|
|
<div id="main">
|
|
<div id="menu">
|
|
<img src="images/quotas.png" width=200% >
|
|
</div>
|
|
|
|
<div id="contenu">
|
|
<button onclick="window.location.href = 'serviceG.html';">Service Global</button><br>
|
|
|
|
<button onclick="window.location.href = 'individuels.html';">Individuels</button><br>
|
|
|
|
<button onclick="window.location.href = 'groupes.html';">Groupes</button><br>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<p> Ci-dessous se trouve ......... </p>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|