-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformulario.html
34 lines (33 loc) · 953 Bytes
/
formulario.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<title>Envía tu noticia</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css">
</head>
<body id="formulario">
<header>
<h1>Envía tu noticia</h1>
<nav>
<a href="/" class="button">Portada</a>
</nav>
</header>
<main>
<form action="#" method="get">
<fieldset>
<legend>Cubre estos datos para enviar tu noticia</legend>
<p>
<label for="title">Título de la noticia</label>
<input name="text" id="title"></input>
</p>
<p>
<label for="text">Texto de la noticia</label>
<textarea name="text" id="text" cols="30" rows="10"></textarea>
</p>
<button type="submit">Enviar</button>
</fieldset>
</form>
</main>
</body>
</html>