-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontacts.html
More file actions
102 lines (102 loc) · 4.87 KB
/
contacts.html
File metadata and controls
102 lines (102 loc) · 4.87 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 lang="en">
<head>
<title>Contacto</title>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" media="screen" href="css/reset.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/style.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/grid_12.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/slider.css">
<link href='http://fonts.googleapis.com/css?family=Cabin+Sketch:400,700' rel='stylesheet' type='text/css'>
<script src="js/jquery-1.7.min.js"></script>
<script src="js/jquery.easing.1.3.js"></script>
<script src="js/tms-0.4.1.js"></script>
<script>
$(document).ready(function(){
$('.slider')._TMS({
show:0,
pauseOnHover:true,
prevBu:'.prev',
nextBu:'.next',
playBu:false,
duration:800,
preset:'fade',
pagination:true,
pagNums:false,
slideshow:7000,
numStatus:false,
banners:false,
waitBannerAnimation:false,
progressBar:false
})
});
</script>
<!--[if lt IE 8]>
<div style=' clear: both; text-align:center; position: relative;'>
<a href="http://windows.microsoft.com/en-US/internet-explorer/products/ie/home?ocid=ie6_countdown_bannercode">
<img src="http://storage.ie6countdown.com/assets/100/images/banners/warning_bar_0000_us.jpg" border="0" height="42" width="820" alt="You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today." />
</a>
</div>
<![endif]-->
<!--[if lt IE 9]>
<script type="text/javascript" src="js/html5.js"></script>
<link rel="stylesheet" type="text/css" media="screen" href="css/ie.css">
<![endif]-->
</head>
<body>
<div class="main">
<!--==============================header=================================-->
<header>
<h1><a href="index.html"><img src="images/logo.png" alt=""></a></h1>
<div class="menuNormal">
<ul class="menu">
<li><a href="index.html" class="clr-1">Inicio</a></li>
<li><a href="about.html" class="clr-2">Nosotros</a></li>
<li><a href="schedule.html" class="clr-3">Horarios</a></li>
<li><a href="gallery.html" class="clr-4">Galerías</a></li>
<li class="current"><a href="contacts.html" class="clr-5">Contacto</a></li>
</ul>
</div>
</header>
<!--==============================content================================-->
<section id="content">
<div class="container_12">
<div class="grid_4 bot-1">
<h2 class="top-6">Contacto</h2>
<div class="map">
<iframe src="http://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Brooklyn,+New+York,+NY,+United+States&aq=0&sll=37.0625,-95.677068&sspn=61.282355,146.513672&ie=UTF8&hq=&hnear=Brooklyn,+Kings,+New+York&ll=40.649974,-73.950005&spn=0.01628,0.025663&z=14&iwloc=A&output=embed"></iframe>
</div>
<dl>
<dt>41901 Calle velarde, <br>Sevilla.</dt>
<dd><span>Teléfono: </span>+1 800 603 6035</dd>
<dd><span>E-mail: </span><a href="#" class="link">mail@artschool.es</a></dd>
</dl>
</div>
<div class="grid_8">
<div class="block-1 top-5">
<div class="block-1-shadow">
<h2 class="clr-6">Contacta con nosotros</h2>
<form id="form" method="post" >
<fieldset>
<label><strong>Nombre:</strong><input type="text" value=""><strong class="clear"></strong></label>
<label><strong>Email:</strong><input type="text" value=""><strong class="clear"></strong></label>
<label><strong>Teléfono:</strong><input type="text" value=""><strong class="clear"></strong></label>
<label><strong>Mensaje:</strong><textarea></textarea><strong class="clear"></strong></label>
<strong class="clear"></strong>
<div class="btns pad-2"><a href="#" class="link-2">Limpiar</a><a href="#" class="link-2" onClick="document.getElementById('form').submit()">Enviar</a></div>
</fieldset>
</form>
</div>
</div>
<!--==============================footer=================================-->
<footer>
<p>© 2013 Art School</p>
<p>Plantilla creada por <a class="link" href="http://www.maxline.es/" target="_blank" rel="nofollow">www.maxline.es</a></p>
</footer>
</div>
<div class="clear"></div>
</div>
</section>
</div>
</body>
</html>