lexus_mod: Formularaufbau

Beitrag lesen

Hallo,

ich möchte ein Formular erstellen, kann ich das so wie unten dargestellt anlegen oder geht das einfacher oder ist das volliger schrott was ich da gemacht habe?

danke und grüße
lexus_mod

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Unbenanntes Dokument</title>
<style type="text/css">
div#wrap{
 position:absolute;
 width:300px;
}
div#wrap ul{
 list-style:none;
 padding:0;
}
div#wrap li.fildName{
 float:left;
 width:100px;
 padding-bottom:10px;
}
div#wrap li.fildInput{
 float:left;
 width:200px;
 padding-bottom:10px;
}
</style>
</head>

<body>
<div id="wrap">
  <ul>
    <li class="fildName">Anrede</li>
    <li class="fildInput">
      <input type="text" name="1" id="1" />
    </li>
    <li class="fildName">Name</li>
    <li class="fildInput">
      <input type="text" name="1" id="1" />
    </li>
    <li class="fildName">E-Mail</li>
    <li class="fildInput">
      <input type="text" name="1" id="1" />
    </li>
  </ul>
</div>
</body>
</html>