-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
51 lines (51 loc) · 1.46 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
<!DOCTYPE html>
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Aldrich' rel='stylesheet' type='text/css' />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/estilos.css">
<link rel="stylesheet" type="text/css" href="iconos/style.css">
<meta charset="utf-8" />
<title></title>
</head>
<body>
<header class="header">
<div class="container">
<div class="col-md-4">
<h1>Contact</h1>
</div>
</div>
</header>
<nav>
<ul>
<li><a href="home.html">home</a></li>
<li><a href="about.html">about</a></li>
<li><a href="services.html">services</a></li>
<li><a href="contact.html">contact</a></li>
</ul>
</nav>
<section>
<form method="post" action="enviar.php">
<table>
<tr>
<td><strong>Nombre:</strong></td>
<td><input type="text" name="name" id="name" placeholder="nombre de pila" ></td>
</tr>
<tr>
<td><strong>Correo: </strong></td>
<td><input type="email" name="email" id="email" placeholder="correo" ></td>
</tr>
<tr>
<td><strong>Mensaje: </strong></td>
</tr>
<tr>
<td colspan="2"><textarea name="comment" id="comment" cols="30" rows="5" placeholder="dejenos su mensaje"></textarea></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Enviar"></td>
</tr>
</table>
</form>
</section>
</body>
</html>