-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacto.html
More file actions
48 lines (45 loc) · 1.88 KB
/
contacto.html
File metadata and controls
48 lines (45 loc) · 1.88 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="contacto.css">
<title>Contacto</title>
</head>
<body>
<nav>
<input id="desplegable" type="checkbox">
<div class="logo"><img src="./img/logoThor.png" alt="logo" href="/index.html"></div>
<ul class="links">
<li><a href="https://aledeleonez.github.io/project1-github-repo/index.html">Inicio</a></li>
<li><a href="https://aledeleonez.github.io/project1-github-repo/personajes.html">Personajes</a></li>
<li><a href="https://aledeleonez.github.io/project1-github-repo/peliculas.html">Peliculas</a></li>
<li><a href="https://aledeleonez.github.io/project1-github-repo/contacto.html">Contacto</a></li>
</ul>
<label for="desplegable" class="icon-burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</label>
</nav>
<div>
<h1>Formulario de contacto</h1>
</div>
<div class="formulario">
<form action="/submit-form" method="post">
<label for="name">Nombre:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Mensaje:</label>
<textarea id="message" name="message" required rows="4" cols="33"></textarea>
<button type="submit">Enviar</button>
</form>
</div>
<footer>
<h3>Web de información sobre las peliculas de Thor en el UCM</h3>
<p>Diseño por Alejandro de León Fernández 2023</p>
</footer>
</body>
</html>