Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
136 changes: 136 additions & 0 deletions Contacto.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,136 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NoticiOSO - Contactanos</title>
<link rel="stylesheet" href="/css/index.css">
</head>
<body>
<header class="Header-general">
<section>
<div class="Menu-container">
<img
src="/images/Logo_trasnparente.png"
alt="Logo"
class="photo-logo"
>
<img
src="/images/Nombre_trasnparente.png"
alt="Nombre periodico"
>
<p class="Titulos">C o n t a c t a n o s</p>
<nav>
<a href="index.html" class="nav-botones">Inicio</a>
<a href="Deportes.html" class="nav-botones">Deportes</a>
<a href="Internacional.html" class="nav-botones">Internacional</a>
<a href="Contacto.html" class="nav-botones">Contactanos</a>
</nav>

</div>
</section>

</header>
<main class="Body-general">
<h1 class="Subtitulos">Ponte en contacto con nosotros</h1>
<!-- enctype="multipart/form-data Sirve para poder enviar varios tipos de datos, no solo texto-->
<form action="#" method="GET" enctype="multipart/form-data">
<dt>
<dt>Nombre</dt>
<dd>
<Input
type="Text"
name="Nombre"
id="Nombre"
placeholder="Teclee su Nombre"
maxlength="50"
minlength="4"
>
</dd>
<br>
<dt>Edad</dt>
<dd>
<input
type="number"
name="age"
id="age"
max="99"
min="2"
>
</dd>
<br>
<dt>Genero</dt>
<dd>
<select name="gender" id="gender">
<option value="male">Masculino</option>
<option value="female">Femenino</option>
<option value="other">Otro</option>
</select>
</dd>
<br>
<dt>Profesión</dt>
<dd>
<Input
type="Text"
name="Profesion"
id="Profesion"
placeholder="Teclee su Profesion"
maxlength="80"
minlength="4"
>
</dd>
<br>
<dt>Elige los temas de tu preferencia</dt>
<dd>
<label for="Futbol">Futbol</label>
<input type="checkbox" name="deportes" id="Futbol">
<label for="Basquetbol">Basquetbol</label>
<input type="checkbox" name="Basquetbol" id="Basquetbol">
<label for="EU">Estados Unidos</label>
<input type="checkbox" name="EU" id="EU">
<label for="Europa">Europa</label>
<input type="checkbox" name="Europa" id="Europa">
<label for="Otro">Otro. Especifique</label>
<input type="checkbox" name="Otro" id="Otro">
<Input
type="Text"
name="Especifico"
id="Especifico"
placeholder="Agregue sus preferencias"
maxlength="200"
minlength="4"
>
</dd>
<br>
<dt>Tu opinión nos ayuda a mejorar este espacio, agradecemos tus comentarios</dt>
<dd>
<textarea name="Opinion" id="Opinion" cols="50" rows="10"></textarea>
</dd>
<br>
<dt>E mail</dt>
<dd>
<input
type="email"
name="mail"
id="mail"
>
</dd>
</dt>
<br>
<br>
<input type="submit" value="Enviar datos" >
<input type="reset" value="Reiniciar el formulario" >
<br>
</form>
</main>
<footer class="footer">
<img
src="/images/Logo_trasnparente.png"
alt="Logo"
class="photo-logo"
>
<p>Derechos reservados Omar Osorio 2020</p>

</footer>
</body>
</html>
Loading