-
Notifications
You must be signed in to change notification settings - Fork 0
/
ed03_2-fernandez_caballero_jose_cielo.html
52 lines (40 loc) · 1.44 KB
/
ed03_2-fernandez_caballero_jose_cielo.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
<!DOCTYPE html>
<html>
<head>
<title>Práctica HTML con VS Code</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="ed03_2-fernandez_caballero_jose_cielo.css">
</head>
<body>
<header>
<h1>Bienvenidos a la práctica de HTML</h1>
</header>
<nav>
<ul>
<li><a href="#">Inicio</a></li>
<li><a href="#about">Sobre nosotros</a></li>
<li><a href="#contacto">Contacto</a></li>
</ul>
</nav>
<section id="about">
<h2>Sobre nosotros</h2>
<p>Esta es una página de prueba para practicar edición de HTML en Visual Studio Code.</p>
<img src="https://imag.bonviveur.com/presentacion-de-las-patatas-fritas-en-freidora-de-aire.jpg" alt="Imagen de ejemplo">
</section>
<section id="contacto">
<h2>Contacto</h2>
<form>
<label for="name">Nombre</label>
<input type="text" id="name" name="name">
<label for="email">Email</label>
<input type="email" id="email" name="email">
<textarea name="mensaje" id="mensaje" cols="30" rows="5">Escribe tu mensaje aquí</textarea>
<button type="submit">Enviar</button>
</form>
</section>
<footer>
<p>Entornos de Desarrollo. CFGS de Desarrollo de Aplicaciones Multiplataforma. Curso 2024/25.</p>
</footer>
</body>
</html>