27 lines
859 B
HTML
27 lines
859 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title> Karäfon </title>
|
|
<link rel="stylesheet" href="karafon_style.css" />
|
|
<link rel="shortcut icon" type="image/x-icon" href="images/logo.jpg" />
|
|
</head>
|
|
<body>
|
|
<header class="banniere">
|
|
<img src="images/logo.jpg" alt="logo de l'association" height="70" width="70"/>
|
|
<h1>Collectif Karäfon</h1>
|
|
</header>
|
|
<div class="centrer">
|
|
<img src="/photos/festival.jpg" alt="photo du festival"/>
|
|
<h1> prochaine édition en juillet</h1>
|
|
</div>
|
|
<input name="button" id="boutonHistorique" onclick="fonctionHistorique()" value="historique" type="button" > <br/>
|
|
</div>
|
|
</body>
|
|
<script id=historique type="text/javascript">
|
|
function fonctionHistorique(){
|
|
window.location.href("historique.html");
|
|
}
|
|
</script>
|
|
</html>
|