Projet

Général

Profil

P13B04 Conception d'un serveur Wifi sur plateforme Rx63N » p13b04_resume.html

Anonyme, 08/04/2021 14:32

 
<!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>Résumé projet</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>
<p>Cette section va expliquer le projet en un court résumé</p>
<p> Tadam !!!</p>
<p>C'était court hein ? :p</p>
<p>Télécharger l'affiche : <a href="affiche.jpg">ici</a>
</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>
(24-24/31)