"TD1 fini plus style css"

This commit is contained in:
JunkJumper 2020-09-07 11:51:27 +02:00
parent f50ca996e6
commit 391c477cd8

View File

@ -27,6 +27,8 @@ $voitures = array(
"VW" => array("Up", "Polo", "Golf", "Passat")
);
echo "voici l'ensemble des variables de ce fichier :";
?>
<html>
@ -97,6 +99,31 @@ $voitures = array(
echo DisplayVoitures($voitures);
?>
<a href="..">
<button class="button blue">Retour à la page précédente</button>
</a>
</body>
<style>
.button {
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
.blue {
background-color: #4c6e8a;
}
/* Green */
</style>
</html>