-
Notifications
You must be signed in to change notification settings - Fork 0
/
cursos.html
168 lines (131 loc) · 4.69 KB
/
cursos.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<!DOCTYPE html>
<html lang="es" dir="ltr">
<head>
<meta charset="utf-8">
<!-- Required meta tags -->
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sh a384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Poppins:300i,400,500,700" rel="stylesheet">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU" crossorigin="anonymous">
<!-- Reset y Style-->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/style.css">
<style>
.back-courses-pg {
margin-top:85px;
background-color:#002D58;
}
.back-courses-pg h3{
color: white;
padding: 25px;
font-size: 2.5em;
font-weight: 600;
}
.back-courses-pg i {
padding-right: 30px;
}
.subtitle {
padding: 20px 0;
border-bottom: 1px solid rgba(118, 118, 122, 0.6);
color: #77777B;
font-size: 1.2em;
}
h4{
font-size: 2em;
padding: 10px 0;
}
</style>
</head>
<body>
<div class="background-menu">
<div class="menu-container">
<header>
<div class="main-menu">
<div class="logo"><img src="img/logot.png" alt=""></div>
<div class="burguer" onclick="myFunction(this)">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
</div>
<nav class="list-menu">
<ul>
<li><h3 class="menu-title">Sobre Nosotros</h3><p class="menu-desc">Descrubre quienes somos y que hacemos</p></li>
<li><h3 class="menu-title">Cursos</h3><p class="menu-desc">Información sobre todos los cursos disponibles</p></li>
<li><h3 class="menu-title">Inscripción</h3><p class="menu-desc">Completa el formulario para inscribirte</p></li>
<li><h3 class="menu-title">Work with as</h3><p class="menu-desc">Unete a nuestro equipo de trabajo</p></li>
</ul>
<div class="btn-alumnos"><a class="btn-sesion" href="/iniciar-sesion"><i class="fas fa-graduation-cap"></i> ACCESO ALUMNOS</a></div>
</nav>
</header>
</div>
</div>
<div class="fluid-container back-courses-pg">
<div class="container">
<h3><i class="fas fa-graduation-cap"></i>Curso de Ingles General</h3>
</div>
</div>
<div class="container">
<section class="subtitle">
<p>Cursos > Ingles General</p>
</section>
</div>
<div class="container">
<div class="row">
<div class="col-12"><h4> General English ( Teens – Young adults – Adults) </h4></div>
<div class="col-4">
<ul class="list-group list-group-flush">
<li class="list-group-item">Elementary (A1)</li>
<li class="list-group-item">Pre intermediate (A2)</li>
<li class="list-group-item">Intermediate (B1)</li>
<li class="list-group-item">Upper intermediate (B2)</li>
<li class="list-group-item">Advanced (C1)</li>
<li class="list-group-item">Proficiency(C2)</li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-4">
</div>
<div class="col">
</div>
<form>
<div class="form-group">
<label for="exampleFormControlInput1">Email address</label>
<input type="email" class="form-control" id="exampleFormControlInput1" placeholder="[email protected]">
</div>
<div class="form-group">
<label for="exampleFormControlSelect1">Example select</label>
<select class="form-control" id="exampleFormControlSelect1">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<div class="form-group">
<label for="exampleFormControlSelect2">Example multiple select</label>
<select multiple class="form-control" id="exampleFormControlSelect2">
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
</select>
</div>
<div class="form-group">
<label for="exampleFormControlTextarea1">Example textarea</label>
<textarea class="form-control" id="exampleFormControlTextarea1" rows="3"></textarea>
</div>
</form>
</div>
</div>
</div>
</body>
</html>