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>
      <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">Email</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="apropos.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-import">
            <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;
}
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