<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
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |