-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.html
80 lines (75 loc) · 2.61 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!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">
<title>Constructora</title>
<link rel="stylesheet" href="assets.1.2.1/css/contact.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/...">
<script src="https://kit.fontawesome.com/f49ecf94c5.js" crossorigin="anonymous"></script>
</head>
<body>
<header>
<img src="assets.1.2.1/img/logo.png" alt="" height="85" width="100">
<input type="checkbox" id="check">
<label for="check" class="mostrar-menu">
≡
</label>
<nav class="menu">
<a href="" >Inicio</a>
<a href="about.html" >Sobre Nosotros</a>
<a href="#contacto" id="a3">Contactanos</a>
<label for="check" class="esconder-menu">
×
</label>
</nav>
</header>
<section id="banner">
<div class="contenido-banner">
<h3>
<span>FECTUM</span>
<br> CONTACTANOS
</h3>
</div>
</section>
<section id="contacto">
<h4>Contactanos</h4>
<form action="">
<div class="datos-form">
<div class="nombre">
<label for="nombre">Nombre</label>
<input type="text" name="nombre" id="nombre" placeholder="Nombre">
</div>
<div class="email">
<label for="email">Nombre</label>
<input type="email" name="email" id="email" placeholder="Email">
</div>
</div>
<div class="mensaje">
<label for="mensaje">Mensaje</label>
<textarea name="mensaje" id="mensaje" cols="30" rows="10" placeholder="Mensaje"></textarea>
</div>
<div class="boton-formulario">
<a href="" class="boton-saber-mas">Enviar Mensaje</a>
</div>
</form>
</section>
<footer>
<p>© 2019 Holu</p>
</footer>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).on('ready', function() {
$('#a3').on('click', function(e) {
e.preventDefault();
$("html, body").animate({scrollTop: $('#contacto').offset().top }, 1000);
});
$('#a2').on('click', function(e) {
e.preventDefault();
$("html, body").animate({scrollTop: $('#personas').offset().top }, 1000);
});
});
</script>
</body>
</html>