47 lines
1.6 KiB
HTML
47 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="./css/style.css">
|
|
<title>Miscelanea Formularios</title>
|
|
</head>
|
|
<body>
|
|
<section>
|
|
<form action="" method="get">
|
|
<fieldset class="fieldset_flex">
|
|
<legend>Formulario</legend>
|
|
<div class="container_flex">
|
|
<label for="input1">Nombre</label>
|
|
<input class="input_std" type="text" name="input1" placeholder="Introduzca su nombre...">
|
|
</div>
|
|
<div class="container_flex">
|
|
<label for="input1">Nombre</label>
|
|
<input class="input_std" type="text" name="input1" placeholder="Introduzca su nombre...">
|
|
</div>
|
|
<div class="container_flex">
|
|
<label for="input1">Nombre</label>
|
|
<input class="input_std" type="tel" name="input1" placeholder="Introduzca su nombre...">
|
|
</div>
|
|
<input class="btn" type="button" value="Enviar">
|
|
</fieldset>
|
|
</form>
|
|
|
|
|
|
<div class="container flex-responsive">
|
|
<div class="flex-col">
|
|
<p>sdfsdf</p>
|
|
<p>sdfsdf</p>
|
|
<p>sdfsdf</p>
|
|
</div>
|
|
<div class="flex-col">
|
|
<p>dfgsdl</p>
|
|
<p>dfgsdl</p>
|
|
<p>dfgsdl</p>
|
|
<p>dfgsdl</p>
|
|
</div>
|
|
</div>
|
|
|
|
</section>
|
|
</body>
|
|
</html> |