-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
52 lines (47 loc) · 2.07 KB
/
contact.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 lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sergio García</title>
<link rel="icon" href="assets/images/sergio1.png">
<link rel="stylesheet" href="index.css">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css">
<script src="contact.js"></script>
</head>
<body>
<section id="menu_principal">
<ul class="menu">
<li id="icono_persona"><a href="index.html"><i class="bi bi-person" style="color: #e7ecf9;"></i></a></li>
<li id="icono_ordenador"><a href="projects.html"><i class="bi bi-laptop" style="color: #e7ecf9;"></i></a></li>
<li id="icono_libro"><a href="education.html"><i class= "bi bi-book" style="color: #e7ecf9;"></i></a></li>
<li id="icono_sobre"><a href="contact.html"><i class="bi bi-envelope" style="color: #e7ecf9;"></i> </a></li>
</ul>
</section>
<section id="contacto_seccion">
<h3>TRABAJEMOS JUNTOS</h3>
<form id="formulario" action="enviar.php" method="post">
<div class="form-group">
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre" required>
</div>
<div class="form-group">
<label for="apellido">Primer Apellido:</label>
<input type="text" id="apellido" name="apellido" >
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="correo" required>
</div>
<div class="form-group">
<label for="mensaje">Mensaje:</label>
<textarea id="mensaje" name="mensaje" rows="4" required></textarea>
</div>
<div class="botonSubmit">
<input type="submit" value="Enviar">
</div>
</form>
</section>
</body>
</html>