Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Commits on Source (4)
body{
background-color: lightblue;
background-repeat: no-repeat;
margin: 0;
}
.accueil div{
background-color: #FFE4C4;
background-repeat:no-repeat;
position: center;
border: 5px solid white;
}
.rech{
height: 200px;
max-width: 50% ;
padding: 30px;
margin: 80px 50px ;
}
.annonces{
height:500px;
max-width:100%;
margin: 50px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
display: inline;
padding: 30px;
}
nav{
position: fixed;
top: 0px;
overflow: hidden;
width: 100%;
background-color: #2F4F4F;
}
a{
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
a:hover{
background: #008080;
color: white;
}
<?php include "templates/head.php" ?>
<body>
<h1> " Creer une nouvelle annonce " </h1>
<form>
<label for="sujet">Le nom du sujet:</label><br>
<input type="text" id="sujet" name="sujet"><br>
<label for="Description">Description:</label><br>
<input type="text" id="Description" name="Description" style="width:200px; height:100px;""><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
File added
<?php include "templates/head.php" ?>
<div class="accueil">
<div class="rech">Block de Recherche
<p> .................... </p>
</div>
<div class="annonces"> Bloc de tous les annonces
<p> .....................Annonces................. </p>
</div>
</div>
</body>
</html>
<?php include "templates/head.php" ?>
<body>
<h1> " L afichage du post qu on a choisi " </h1>
</body>
</html>
<?php include "templates/head.php" ?>
<body>
<h1> "Il s affiche la categorie des annonces que j'ai cherche" </h1>
</body>
</html>
<?php include "templates/head.php" ?>
<body>
<h1> "La formulaire pour l' inscription/connection"
<h2>Sign Up</h2>
<form>
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname"><br>
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname"><br><br>
<label for="email">Email:</label><br>
<input type="text" id="email" name="email"><br><br>
<label for="password">Password:</label><br>
<input type="text" id="password" name="password"><br><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Strasbourg</title>
<link rel="stylesheet" href="assets/css/nav.css">
<link rel="stylesheet" href="assets/css/index.css">
</head>
<body>
<?php include 'templates/navbar.php' ?>
<link rel="stylesheet" href="assets/css/nav.css">
<nav>
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="signUp.php">Sign In / Sign Up</a></li>
<li><a href="#lng">Language</a></li>
<li><a href="createPost.php">New Post</a></li>
</ul>
</nav>