|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" type="image/png" href="sakura_ico.png" />
|
|
<style>
|
|
p{
|
|
color:black;
|
|
font-family:arial;
|
|
}
|
|
|
|
a{
|
|
color: purple;
|
|
text-decoration: underline;
|
|
}
|
|
body{
|
|
background-color: #88b0e9;
|
|
font-family: 'Trebuchet MS', Arial, sans-serif;
|
|
color: #181818;
|
|
}
|
|
|
|
/* Entete*/
|
|
|
|
header
|
|
{
|
|
background-color: #b168c1;
|
|
border: 5px solid #7b0095;
|
|
border-radius: 20px;
|
|
width: 80%;
|
|
margin: auto;
|
|
}
|
|
|
|
header h1
|
|
{
|
|
font-family: 'BallparkWeiner', serif;
|
|
font-size: 2.5em;
|
|
font-weight: normal;
|
|
}
|
|
|
|
#titre_principal
|
|
{
|
|
display: inline-block;
|
|
}
|
|
|
|
#logo, header h1
|
|
{
|
|
display: inline-block;
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
|
|
/* Navigation */
|
|
|
|
nav
|
|
{
|
|
display: inline-block;
|
|
width: 740px;
|
|
text-align: right;
|
|
}
|
|
|
|
nav ul
|
|
{
|
|
list-style-type: none;
|
|
}
|
|
|
|
nav li
|
|
{
|
|
display: inline-block;
|
|
margin-right: 15px;
|
|
}
|
|
|
|
nav a
|
|
{
|
|
font-size: 1.3em;
|
|
color: #181818;
|
|
padding-bottom: 3px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
nav a:hover
|
|
{
|
|
color: #760001;
|
|
border-bottom: 3px solid #760001;
|
|
}
|
|
|
|
/* Corps */
|
|
section
|
|
{
|
|
background-color: #ffffff;
|
|
border-radius: 4px;
|
|
width: 80%;
|
|
margin: auto;
|
|
margin-top: 10px;
|
|
padding: 5px 5px 5px 5px;
|
|
box-shadow: 0px 4px 4px #1c1a19;
|
|
}
|
|
|
|
/* Footer */
|
|
|
|
footer
|
|
{
|
|
padding-top: 25px;
|
|
width: 80%;
|
|
margin: auto;
|
|
}
|
|
|
|
footer p, footer ul
|
|
{
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
footer h1
|
|
{
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
#logo_renesas, #Projet, #auteurs
|
|
{
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
}
|
|
|
|
#logo_renesas
|
|
{
|
|
width: 28%;
|
|
}
|
|
|
|
#Projet
|
|
{
|
|
width: 35%;
|
|
}
|
|
|
|
#auteurs
|
|
{
|
|
width: 31%;
|
|
}
|
|
|
|
#logo_renesas img
|
|
{
|
|
border: 1px solid #181818;
|
|
margin-right: 2px;
|
|
}
|
|
|
|
#auteurs ul
|
|
{
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
margin-top: 0;
|
|
width: 48%;
|
|
padding-left: 2px;
|
|
}
|
|
</style>
|
|
<title>Affichage température</title>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div id="titre_principal">
|
|
<h1>Web-Serveur GR-sakura</h1>
|
|
|
|
</div>
|
|
|
|
<nav>
|
|
<ul>
|
|
<li><a href="index.html">Accueil</a></li>
|
|
<li><a href="informations.html">Infos</a></li>
|
|
<li><a href="led.html">Contrôle des Leds</a></li>
|
|
<li><a href="temperature.html">Temperature</a></li>
|
|
<li><a href="resume.html">Resume</a></li>
|
|
<li><a href="http://am.renesas.com">Renesas</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<section>
|
|
<h1>Température de la cible</h1>
|
|
<p>La témpérature du RX63N peut être récupérée, il nous reste maintenant à comprendre comment l'afficher sur une page web</p>
|
|
</section>
|
|
<footer>
|
|
<div id="logo_renesas">
|
|
</div>
|
|
<div id="Projet">
|
|
<h1>Projet web-serveur wifi</h1>
|
|
<p>p13b04</p>
|
|
</div>
|
|
<div id="auteurs">
|
|
<h1>Auteurs</h1>
|
|
<ul>
|
|
<li>Jonathan Chassaing</li>
|
|
<li>Florent Montes</li>
|
|
</ul>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html>
|