Creation de la page liste.php

pull/1/head
raphael.palaffre 5 years ago
parent 4f610b9138
commit 1848655848

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

@ -0,0 +1,36 @@
body {
color:black;
background-color:white;
background-image:url(background.jpg);
background-repeat:no-repeat;
background-size:104%;
margin: 0;
}
#container{
margin : 5% 5% 5% 5%;
background-color : white;
border : 2px solid black;
}
h1{
text-align : center;
font-size : 250%;
}
h2{
text-align : center;
font-size : 150%;
}
#bouton_retour{
transform : rotate(45deg);
}
.separation{
margin-top : 5%;
margin-left : 10%;
height: 200px;
width : 5px;
background: black;
}

@ -0,0 +1,33 @@
<?php
$source = "Toulouse";
$dest = "Albi";
?>
<!DOCTYPE html>
<html lang = "fr">
<head>
<meta charset = "UTF-8">
<link rel = "stylesheet" href = "liste.css">
<title>Liste des trajets</title>
</head>
<body>
<div id = "container">
<div id ="entete">
<a href = "LIEN TABLEAU DE BORD"><img id = "bouton_retour" src = "return.png" alt = "Bouton retour"></a>
<h1 class = "float" id = "titre">Liste des trajets</h1>
<br>
<h2>Trajets recherchés : <?php echo $source ?> --> <?php echo $dest ?> </h2>
</div>
<div id = "liste">
<hr class="separation" />
</div>
</div>
</body>
</html>

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

Loading…
Cancel
Save