-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacte.html
More file actions
102 lines (81 loc) · 4.3 KB
/
contacte.html
File metadata and controls
102 lines (81 loc) · 4.3 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
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
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Clinicas Guang An Men</title>
<meta name="format-detection" content="telephone=no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<!-- width=device-width, height=device-height, -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, target-densitydpi=device-dpi" />
<link rel="stylesheet" href="css/estils.css" /> <!-- Estils propis -->
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet"> <!-- FontAwesome -->
<!-- Estils i Javascripts de JQuery -->
<link rel="stylesheet" href="themes/clinicas.min.css" />
<link rel="stylesheet" href="themes/jquery.mobile.icons.min.css" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.2/jquery.mobile.structure-1.4.2.min.css" />
<script src="js/jquery.min.js"></script>
<script src="http://code.jquery.com/mobile/1.4.2/jquery.mobile-1.4.2.min.js"></script>
<!--// -->
</head>
<body>
<script type="text/javascript" charset="utf-8" src="phonegap.js"></script> <!-- Llibreria PhoneGap -->
<script type="text/javascript" charset="utf-8" src="PushNotification.js"></script> <!-- Llibreria plugin Push -->
<script type="text/javascript" charset="utf-8" src="js/push.js"></script> <!-- Funcions PushWoosh -->
<script type="text/javascript">
app.initialize();
</script>
<div data-role="page" class="ui-responsive-panel" data-theme="b">
<div data-role="header" data-position="fixed">
<h1>Clinicas Guang An Men</h1>
<a href="#nav-panel" data-icon="bars" data-iconpos="notext">Menu</a>
<a href="tel:+34977703703" data-icon="phone" data-iconpos="notext">977 70 37 03</a>
<div id="slider"></div>
</div><!-- /header -->
<div data-role="content" class="justifica">
<h2>Contacta con nosotros</h2>
<h3>Visitanos en las redes sociales...</h3>
<div class="ui-grid-b social">
<div class="ui-block-a"><p><a href="https://www.facebook.com/ClinicasGAM"><i class="fa fa-facebook"></i> Facebook</a></p></div>
<div class="ui-block-b"><p><a href="https://twitter.com/@femtc"><i class="fa fa-twitter"></i> Twitter</a></p></div>
<div class="ui-block-c"><p><a href="https://www.youtube.com/user/FEMTC1"><i class="fa fa-youtube"></i> Youtube</a></p></div>
</div>
</div><!-- /content -->
<div class="footer">
<p>© 2014 Grupo MTC.<br/>Programación y diseño: <a href="//www.hitech-informatica.es" target="_blank">HiTech Informàtica</a></p>
</div><!-- /jqm-footer -->
<div data-role="panel" data-position="left" data-position-fixed="false" data-display="overlay" id="nav-panel" data-theme="b">
<!--<div data-role="panel" data-position="left" data-position-fixed="false" data-display="reveal" id="nav-panel" data-theme="a">-->
<ul data-role="listview" data-theme="a" data-divider-theme="a" style="margin-top:-16px;" class="nav-search">
<!--
<li data-icon="delete" style="background-color:#111;">
<a href="#" data-rel="close">Volver</a>
</li>
-->
<li>
<a href="index.html">Guang An Men</a>
</li>
<li>
<a href="quienes.html">¿Quienes somos?</a>
</li>
<li>
<a href="tratamientos.html">Tratamientos</a>
</li>
<li>
<a href="promociones.html">Promociones</a>
</li>
<li>
<a href="visita.html">Solicitar Visita</a>
</li>
<li>
<a href="donde_estamos.html">¿Donde estamos?</a>
</li>
<li>
<a href="contactar.html">Contactar</a>
</li>
</ul>
<!-- panel content goes here -->
</div><!-- /panel -->
</div><!-- /page -->
</body>
</html>