site_web_karafon/historique.html

43 lines
1.6 KiB
HTML
Raw Normal View History

2024-06-19 10:53:57 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
2024-06-19 13:23:26 +00:00
<title> Karäfon historique</title>
2024-06-19 10:53:57 +00:00
<link rel="stylesheet" href="karafon_style.css" />
2024-06-19 13:23:26 +00:00
<link rel="shortcut icon" type="image/x-icon" href="images/logo.png" />
2024-06-19 10:53:57 +00:00
</head>
<body>
<header>
2024-06-19 12:44:32 +00:00
<div class="titre">
2024-06-19 13:23:26 +00:00
<img src="images/logo.png" alt="logo de l'association" height="70" width="70"/>
2024-06-19 12:44:32 +00:00
<h1 id="collectif_karafon">Collectif Karäfon</h1>
<p id="festival_itinerant">Festival itinérant</p>
</div>
<div class="buttons">
<input name="button" id="boutonAccueil" onclick="fonctionAccueil()" value="Accueil" type="button" > <br/>
2024-06-19 14:14:46 +00:00
<input name="button" id="boutonPresentation" onclick="fonctionPresentation()" value="Présentation" type="button" > <br/>
<span class="encours">
<input name="button" id="boutonHistorique" value="Historique" type="button" > <br/>
</span>
<input name="button" id="boutonProchainsEvenements" onclick="fonctionProchainsEvenements()" value="Prochains événements" type="button" > <br/>
<input name="button" id="boutonContact" onclick="fonctionContact()" value="Contact" type="button" > <br/>
2024-06-19 12:44:32 +00:00
</div>
2024-06-19 10:53:57 +00:00
</header>
2024-06-19 14:14:46 +00:00
<p>Voici l'historique</p>
2024-06-19 12:44:32 +00:00
2024-06-19 13:23:26 +00:00
</body>
2024-06-19 14:14:46 +00:00
<script type="text/javascript">
2024-06-19 13:23:26 +00:00
function fonctionAccueil(){
2024-06-19 14:14:46 +00:00
window.location.href="index.html";
2024-06-19 13:23:26 +00:00
}
function fonctionPresentation(){
2024-06-19 14:14:46 +00:00
window.location="presentation.html";
2024-06-19 13:23:26 +00:00
}
function fonctionContact(){
2024-06-19 14:14:46 +00:00
window.location="contact.html";
2024-06-19 13:23:26 +00:00
}
function fonctionProchainsEvenements(){
2024-06-19 14:14:46 +00:00
window.location="prochains_evenements.html";
2024-06-19 13:23:26 +00:00
}
</script>
</html>