-
Notifications
You must be signed in to change notification settings - Fork 1
/
contacto.html
101 lines (85 loc) · 4.24 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
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>Club Atlético San Lorenzo de Almagro</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="estilos/estilos.css">
<link rel="shortcut icon" href="imagenes/favicon.ico">
</head>
<body>
<div class="contenedor">
<header>
<div class="logo">
<img src="imagenes/logo_club.png" width="150" alt="escudo_club">
<a href="index.html">C.A San Lorenzo de Almagro</a>
</div>
<nav>
<a href="index.html">Inicio</a>
<a href="historia.html">Historia</a>
<a href="jugadores.html">Jugadores</a>
<a href="contacto.html">Contacto</a>
</nav>
</header>
<section class="main">
<article>
<form action="" class="form" method="post" id="form" novalidate>
<h2 class="form_title"> ¿Como podemos ayudarte?</h2>
<div class="form_container">
<div class="form_group">
<input type="text" name="" id="name" class="form_input" placeholder=" ">
<label for="name" class="form_label"> Nombre</label>
<span class="for_line"></span>
</div>
<div class="form_group">
<input type="email" name="" id="email" class="form_input" placeholder=" ">
<label for="user" class="form_label"> Correo Electronico</label>
<span class="for_line"></span>
</div>
<div class="form_group">
<input type="text" name="" id="mesagge" class="form_input" placeholder=" ">
<label for="user" class="form_label"> Mensaje</label>
<span class="for_line"></span>
</div>
<div class="form_group">
<input type="text" name="" id="phone" class="form_input" placeholder=" ">
<label for="password" class="form_label"> Telefono</label>
<span class="for_line"></span>
</div>
<input type="submit" class="form_submit" value="Enviar" >
<p class="warnings" id="warnings"></p>
</form>
</article>
</section>
<aside>
<div class="widget">
<h4>Nuestro Ultimo Partido</h4>
<div class="video-responsive"><iframe src="https://www.youtube.com/embed/kVm271AUBTk" frameborder="0"
allowfullscreen="allowfullscreen"></iframe></div>
</div>
<div class="widget">
<h4>Nuestro Casa</h4>
<div class="video-responsive"><iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3282.1030141173283!2d-58.44228478512903!3d-34.652101267566!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x95bccbbf80977ed5%3A0xb7eedcbe4a3ab64e!2sEstadio%20Pedro%20Bidegain!5e0!3m2!1ses-419!2sar!4v1666647183819!5m2!1ses-419!2sar"
allowfullscreen=""></iframe></div>
</div>
</aside>
<footer>
<section class="links">
<a href="index.html">Inicio</a>
<a href="historia.html">Historia</a>
<a href="jugadores.html">Jugadores</a>
<a href="contacto.html">Contacto</a>
</section>
<div class="social">
<a href="https://www.facebook.com/SanLorenzo" target="_blank"><img src="imagenes/logo_facebook.png"
width="30" alt=""></a>
<a href="https://twitter.com/sanlorenzo" target="_blank"><img src="imagenes/logo_twitter.png" width="30"
alt=""></a>
</div>
</footer>
</div>
<script src="codigo/codigo.js"></script>
</body>
</html>