Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <title>Title</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <link rel="stylesheet" href="css.css">
</head>
<body>
  <header>
    <h1>Title</h1>
    <h2>CONNECTEZ-VOUS OU INSCRIVEZ-VOUS</h2>
  </header>
  <p class="paragraphe1"><a href="http://pierre-giraud.com">Mot de passe oublié ?</a></p>
  <p class="paragraphe2">Vous n'avez pas de compte ? <a href="http://pierre-giraud.com">Inscrivez-vous</a></p>
  <form method="post" action="traitement.php">
    <div class="div4">
      <label for="mail" id="email" name="mail"></label> <input type="email" id="email" name="mail" autocomplete="on" placeholder="Ex:damien.font@gmail.com">
    </div>
    <div class="div5">
      <input type="password" id="pass" name="pass" placeholder="MOT DE PASSE" autocomplete="on">
    </div><input type="submit" value="SE CONNECTER" class="button_submit">
  </form>
 <nav>
     <div class="table">
        <ul>
           <li class="menu-prop">
               <a href="àpropos.html">À propos</a>
           </li>
           <li class="menu-aide">
               <a href="aide.html">Aide</a>
           </li>
           <li class="menu-conf">
               <a href="confidentialité.html">Confidentialité</a>
           </li>
           <li class="menu-cookies">
               <a href="cookies.html">Paramètres des cookies</a>
           </li>
           <li class="menu-cond">
               <a href="conditions.html">Conditions</a>
           </li>
           <li class="menu-impcont">
               <a href="importationscontact.html">Importation des contacts et non-utilisateurs</a>
           </li>
        </ul>
       </div>       
     </nav>
  <footer>
  <p class="paragraphe3">Title par Damien</p>
  </footer>
</body>
</html>
 
html, body {
    background-color: orange;
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    display: table;
    width: 100%;
}
h1 {
    color: #fdfefe;
    font-size: 110px;
    font-family: Georgia, serif;
    text-align: center;
    margin-top: 5%;
}
h2 {
    color: #d32f2f;
    font-size: 25px;
    text-align: center;
    margin-top: 5%;
}
input[type=email] {
    display: block;
    margin-top: -400px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    height: 30px;
    width: 300px;
    text-align: center;
    position: relative;
}
input[type=password] {
    display: block;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    height: 30px;
    width: 300px;
    text-align: center;
    position: relative;
}
input[type=submit] {
    display: block;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
    color: #fdfefe;
    background-color: #d32f2f;
    height: 30px;
    width: 150px;
    border-radius: 5px;
    position: relative;
}
.paragraphe1{
    color: #d32f2f;
    font-size: 18px;
    margin-top: 400px;
    text-align: center;
}
.paragraphe2{
    color: #d32f2f;
    font-size: 18px;
    margin-top: 50px;
    text-align: center;
}
a:link{
    color: blue;
    text-decoration: none;
}
 nav{
    width: 100%;
    right: 0;
    left: 0;
    bottom: 100px;
    position: absolute;
    background-color: #85c1e9;     
}
nav ul{
    margin: 0px;
    padding: 0px;
}
nav li{
    list-style-type: none;
    float: left;
}
nav a{
    display: inline-block;
    text-decoration: none;
    padding: 20px 30px;
    color: blue;
    text-transform: uppercase;
    font-size: 12px;
}
.table{
    display: table;
    margin: 0 auto;
}
.menu-prop:hover, .menu-aide:hover, .menu-conf:hover, .menu-cookies:hover, .menu-cond:hover,  .menu-impcont:hover{
    border-top: 5px solid #4C8;
    background-color: RGBa(64, 200, 130, 0.15);
}
footer {
    display: table-row;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100px;
    text-align: center;
    background-color: #1e88e5;
    border-top: 2px solid #AAA;
    position: absolute;
}
.paragraphe3 {
    font-family: bold;
    font-size: 15px;
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers