Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
  <link href='http://fonts.googleapis.com/css?family=Open+Sans:800,400' rel='stylesheet' type='text/css'>
</head>
<body>
  <h1>Formulare</h1>
  
  <h2>Basis Formular Elemente</h2>
  
  <form action="" method="get">
    <label for="vorname">Vorname</label>
    <input type="text" id="vorname">
    <label for="nachname">Nachname</label>
    <input type="text" id="nachname">
    <button>Absenden</button>
  </form>
</body>
</html>
 
html {
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
}
* {
  box-sizing: inherit;
}
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
h1 {
  font-size: 50px;
  line-height: 1;
}
th, td {
  text-align: left;
  padding: 5px;
}
input {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
Output 300px

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

Dismiss x
public
Bin info
gionkunzpro
0viewers