-
Notifications
You must be signed in to change notification settings - Fork 0
/
opinion.html
60 lines (52 loc) · 2.03 KB
/
opinion.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8">
<!--Metadatos de los documentos HTML5-->
<meta name="author" content="Moisés García López">
<meta name="description" content="Primera práctica de HTML-CSS">
<meta name="keywords" content="características, html, laravel">
<!--Definición de la ventana gráfica-->
<meta name="viewport" content="width=device-width, initial scale=1.0">
<title>HTML-CSS</title>
<link rel="stylesheet" type="text/css" href="estilo.css">
<link rel="stylesheet" type="text/css" href="layout.css">
</head>
<body>
<header>
<h1>Laravel</h1>
</header>
<nav>
<a href="index.html">Inicio</a>
<a href="caracteristicas.html">Características</a>
<a href="mas.html">Más</a>
<a href="">Opinión</a>
</nav>
<main>
<section>
<h2>Tu opinión</h2>
<form>
<label for="nombre">Nombre</label><br>
<input type="text" id="nombre"><br>
<label for="password">Contraseña</label><br>
<input type="password" id="password"><br>
<label for="datetime-local">Fecha de nacimiento</label><br>
<input type="datetime-local" id="datetime-local"><br>
<label for="opinion">Escribe tu opinión sobre Laravel</label><br>
<input type="text" id="opinion"><br>
<fieldset>
<legend>Selecciona una opción:</legend>
<input type="radio" id="hombre" name="hombre" value="hombre">
<label for="hombre">Hombre</label><br>
<input type="radio" id="mujer" name="mujer" value="mujer">
<label for="mujer">Mujer</label><br>
</fieldset>
<input type="submit" value="Enviar">
</form>
</section>
</main>
<footer>
<p>Página creada por Moisés García López</p> </footer>
</body>
</html>