Este codigo te ayuda a crear tu primera pagina html...........como en la imagen






<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>BIenvenido</title>
</head>
<body>
  <h1>
    ¿comó tú te llamas?
  </h1>
  <form>
    <table>
      <tr>
        <td><label from="nombre">Nombre:</label></td>
        <td><input type="text" name="nombre"></td>
      </tr>
      <tr>
        <td><label from="apellidos">Apellidos:</label></td>
        <td><input type="text" name="apellidos"></td>
      </tr>
      <tr>
        <td><label from="fecha_nacimiento">Fecha nacimiento:</label></td>
        <td><input type="date" name="fecha_nacimiento"></td>
      </tr>
      <tr>
        <td><label from="ci">CI:</label></td>
        <td><input type="number" name="ci"></td>
      </tr>
      <tr>
        <td><label from="telefono">Telefono:</label></td>
        <td><input type="number" name="telefono"></td>
      </tr>
     
    </table>
    <input type="submit" name="registro" value="Registrar">
  </form>
</body>
</html>

Comentarios