-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontacto.html
92 lines (75 loc) · 4.27 KB
/
contacto.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
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Contacto</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link rel="stylesheet" href="css.css" type="text/css" media=screen,projection"/>
<script src='https://www.google.com/recaptcha/api.js'></script>
</head>
<body>
<nav>
<div class="nav-wrapper">
<a href="#" class="brand-logo"><img src="img/logo.png" ></a>
<ul id="nav-mobile" class="right">
<li><a href="index.html" class="waves-effect waves-light btn">Home<i class="material-icons right">home</i></a></li>
<li><a href="servicios.html" class="waves-effect waves-light btn">¿Que servicios ofrecemos?<i class="material-icons right">build</i></a></li>
<li><a href="whoweare.html" class="waves-effect waves-light btn">¿Quienes somos?<i class="material-icons right">live_help</i></a></li>
</ul>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col s12" style="padding-left:30%;">
<h3>Contáctanos</h3>
</div>
</div>
</div>
<div class="container">
<ul class="collection">
<div class="row" style="padding-top:50px; padding-left: 10px;">
<div class="col s1">
<div class="center promo promo-example">
<i class="material-icons" style="font-size: 100px" >phone</i>
</div>
</div>
<div class="col s10" style="padding-left:5%;">
<h5><strong>Llámanos</strong>
<br><br>+569 45500204
</h5>
</div>
</div>
</ul>
<ul class="collection">
<div class="row" style="padding-top:50px; padding-left: 10px;">
<div class="col s1">
<div class="center promo promo-example">
<i class="material-icons" style="font-size: 100px" >mail</i>
</div>
</div>
<div class="col s10" style="padding-left:5%;">
<h5><strong>Envia tu correo </strong>
<br><br>[email protected]
</h5>
</div>
</div>
</ul>
</div>
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script>
$(document).ready(function () {
$('.sidenav').sidenav();
$('select').material_select();
$('.materialboxed').materialbox();
});
</script>
</body>
</html>