-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (114 loc) · 4.82 KB
/
index.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=DIN+Condensed:wght@400;500;700&display=swap" rel="stylesheet">
<script defer src="/js/index.js"></script>
<title>Windsor Institute</title>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container">
<div class="navbar-brand d-lg-inline-block align-items-center">
<img src="/img/LOGO WINDSOR.png" width="100" height="125" class="d-inline-block align-top" alt="Logo">
<img src="/img/WE BUILD SLOGAN.png" width="140" height="80"
class="d-inline-block align-top slogan-logo mobile-margin-right" alt="Slogan Logo"
style="margin-top: 1.5rem;">
</div>
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="nosotros.html">Nosotros</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contacto.html">Días y Horarios</a>
</li>
</ul>
</div>
</nav>
<div class="hero text-center"
style="background-image: url('/img/banner\ estudiantes.jpg'); background-size: cover; background-position: calc(100% - 38%) center; height: 69vh; margin: 0; padding: 0; position: relative;">
<div class="overlay"></div>
<div class="container" style="position: relative; z-index: 1; padding-top: 20vh;">
<div class="row">
<div class="col-md-12">
<style>
.hero h1 {
font-weight: 700;
color: #fff;
font-size: 4.5rem;
text-align: center;
margin-top: 22%;
transform: translateY(-50%);
text-shadow: 6px 6px 12px rgba(0, 0, 0, 0.8);
}
.hero p {
font-weight: 400;
color: #fff;
font-size: 2.5rem;
text-align: right;
margin-top: -4%;
text-shadow: 6px 6px 12px rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
.hero {
height: 60vh;
background-position: center top;
}
.hero h1 {
font-size: 2rem;
}
.hero p {
font-size: 1rem;
}
#titulo {
margin-top: 250px;
text-shadow: 6px 6px 12px rgba(0, 0, 0, 0.8);
font-size: 2.5rem;
text-align: right;
margin-top: 92%;
transform: translateY(-50%);
}
#desc {
margin-top: -22px;
text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.8);
font-size: 2rem;
}
}
</style>
<h1 class="display-4 text-white" id="titulo">Instituto de Inglés</h1>
<p class="lead text-white" id="desc">Todos los niveles</p>
</div>
</div>
</div>
</div>
<footer class="bg-gray text-black text-center">
<div class="container">
<div class="mt-4">
<a href="https://wa.me/5491165370303" class="text-black me-4 fs-4">
<i class="fab fa-whatsapp"></i>
</a>
<a href="https://www.instagram.com/ingleswindsor/" class="text-black fs-4">
<i class="fab fa-instagram"></i>
</a>
</div>
<img src="/img/WE BUILD SLOGAN.png" alt="Slogan de We Build" class="img-fluid mt-4 mb-4"
style="max-width: 160px;">
<p>Dirección: Dr. Gines de la Quintana 3721, B1742FUQ Paso del Rey, Provincia de Buenos Aires</p>
<iframe
src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3277.787332440744!2d-58.73217818494869!3d-34.64376008044995!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x95a3285a36c19187%3A0x6dd9aa14fcf086d7!2sDr.%20Gines%20de%20la%20Quintana%203721%2C%20B1742FUQ%20Paso%20del%20Rey%2C%20Provincia%20de%20Buenos%20Aires!5e0!3m2!1ses-419!2sar!4v1694150015693!5m2!1ses-419!2sar"
width="100%" height="250" style="border:0;" allowfullscreen="" loading="lazy"></iframe>
</div>
</footer>
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/5.5.0/js/bootstrap.min.js"></script>
</body>
</html>