site-tpe/index.php
2025-05-16 18:49:08 +02:00

107 lines
No EOL
2.7 KiB
PHP

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!-- Include EnlighterJS Styles -->
<link rel="stylesheet" type="text/css" href="EnlighterJS/Build/EnlighterJS.min.css" />
<!-- Include MooTools Framework -->
<script type="text/javascript" src="EnlighterJS/MooTools/MooTools-Core-1.5.2.js"></script>
<!-- Include EnlighterJS -->
<script type="text/javascript" src="EnlighterJS/Build/EnlighterJS.min.js" ></script>
<link rel="stylesheet" href="http://www.achilletoupin.com/tpe/style.css" />
<link rel="stylesheet" href="index/styleTpe.css" />
<title>achilletoupin.com - TPE</title>
<link rel="shortcut icon" href="index/images/favicon.gif"/>
<script>
function show(id)
{
if(document.getElementById(id + 'd').style.display == 'none'){
document.getElementById(id + 'd').style.display = 'inline';
//document.getElementById(id).style.-ms-transform = 'rotate(0deg)';
//document.getElementById(id).style.-webkit-transform = 'rotate(0deg)';
document.getElementById(id).style.transform = 'rotate(0deg)';
}
else{
document.getElementById(id + 'd').style.display = 'none';
//document.getElementById(id).style.-ms-transform = 'rotate(-90deg)';
//document.getElementById(id).style.-webkit-transform = 'rotate(-90deg)';
document.getElementById(id).style.transform = 'rotate(-90deg)';
}
}
</script>
<script>
function showF(id)
{
if(document.getElementById(id + 'd').style.display == 'none'){
document.getElementById(id + 'd').style.display = 'inline';
//document.getElementById(id).style.-ms-transform = 'rotate(0deg)';
//document.getElementById(id).style.-webkit-transform = 'rotate(0deg)';
document.getElementById(id).style.transform = 'rotate(0deg)';
}
}
</script>
<script>
function showButton(id)
{
if(document.getElementById(id + 'd').style.display == 'none'){
document.getElementById(id + 'd').style.display = 'inline';
document.getElementById(id).innerHTML = 'Masquer';
}
else{
document.getElementById(id + 'd').style.display = 'none';
document.getElementById(id).innerHTML = 'Afficher';
}
}
</script>
</head>
<body>
<?php include("index/includes/header.php"); ?>
<section>
<article>
<h2>Notice - Introduction</h2>
<?php include("index/includes/intro.php"); ?>
<h2><a href="page1-son.php">Page suivante - Le son</a><img id="arrowRight" src="index/images/arrow-right.png"></img></h2>
</article>
<?php include("index/includes/aside.php"); ?>
</section>
<?php include("index/includes/footer.php"); ?>
</body>
</html>