El elemento <input>
El elemento <input> se usa para crear una variedad de controles
de nivel del documento (form). El elemento sólo requiere un comando de apertura.
Los elementos son elementos inline. Ejemplo:
<html>
<head>
<title>El elemento input</title>
</head>
<body>
<input
type=text
value="Enter Name" /> Campo de Texto Simple.
<hr
/>
<input
type=button
value="Click Here!"
/> Botón.
<hr
/>
<input
type=checkbox
value="Check this" checked
/> Check Box.
<hr
/>
<input
type=radio
value="Radio"
/> Radio Button.
<hr
/>
<input
type="file"/> Archivo.
<hr
/>
<input
type="password"
/> Contraseña.
</body>
</html>
|