-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
196 lines (181 loc) · 7.55 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
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<!DOCTYPE html>
<html lang="pt-BR" class="h-100">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Site Cel.Lep</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- Icons Bootstrap -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<link href="style.css" rel="stylesheet" type="text/css" />
<!-- JavaScript Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</head>
<body class="h-100 d-flex flex-column">
<header class="sticky-top">
<nav class="navbar navbar-expand-sm navbar-dark bg-dark px-3">
<!-- logo -->
<img src="https://br.cellep.com/wp-content/themes/cellep/assets/img/logo_branca.svg" alt="Cel.Lep">
<!-- Button -->
<button class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navegacao2">
<span class="navbar-toggler-icon"></span>
</button>
<!-- Lista de navegação -->
<div class="collapse navbar-collapse" id="navegacao2">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a href="index.html" class="nav-link active">
Home
</a>
</li>
<li class="nav-item">
<a href="agenda.html" class="nav-link">
Agenda
</a>
</li>
<li class="nav-item dropdown">
<a href="#" class="nav-link dropdown-toggle" data-bs-toggle="dropdown">
Entidades
</a>
<!-- Lista de elementos do menu dropdown -->
<div class="dropdown-menu bg-dark">
<a target="_blank" href="https://br.cellep.com" class="dropdown-item text-white">
<i class="bi bi-file-earmark-person me-1"></i> Cel.Lep
</a>
<a target="_blank" href="https://estacaohack.fb.com" class="dropdown-item text-white">
<i class="bi bi-facebook me-1"></i> Estação Hack
</a>
</div>
</li>
<li class="nav-item">
<a href="#" class="nav-link">
Area do Aluno
</a>
</li>
</ul>
</div>
</nav>
</header>
<main>
<div class="d-flex align-items-center text-center text-white bg-imagem">
<div class="container-fluid">
<p>
Transformando vidas por meio da educação
</p>
</div>
</div>
<section class="container">
<div class="row my-4">
<div class="col-md-12">
<h2 class="text-warning">
Conheça nossos cursos
</h2>
</div>
</div>
<div class="row">
<div class="col-md-4 shadow p-3 mb-5 rounded">
<div class="card">
<img src="https://cdn.pixabay.com/photo/2016/11/19/14/00/code-1839406_960_720.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title text-warning">Web Dev - Frontend</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a target="_blank"
href="https://br.cellep.com/estacao-hack-sp"
class="btn btn-outline-primary"
>
Saiba mais
</a>
</div>
</div>
</div>
<div class="col-md-4 shadow p-3 mb-5 rounded">
<div class="card">
<img src="https://cdn.pixabay.com/photo/2018/01/16/05/56/idea-3085367_960_720.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title text-warning">Web Dev - Backend Node.js</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a target="_blank"
href="https://br.cellep.com/estacao-hack-sp"
class="btn btn-outline-primary"
>
Saiba mais
</a>
</div>
</div>
</div>
<div class="col-md-4 shadow p-3 mb-5 rounded">
<div class="card">
<img src="https://cdn.pixabay.com/photo/2016/02/07/21/03/computer-1185626_960_720.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title text-warning">App Dev - React-Native & Expo</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a target="_blank"
href="https://br.cellep.com/estacao-hack-sp"
class="btn btn-outline-primary"
>
Saiba mais
</a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 shadow p-3 mb-5 rounded">
<div class="card">
<img src="https://cdn.pixabay.com/photo/2015/05/28/14/38/ux-787980_960_720.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title text-warning">Ux/Ui - App</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a target="_blank"
href="https://br.cellep.com/estacao-hack-sp"
class="btn btn-outline-primary"
>
Saiba mais
</a>
</div>
</div>
</div>
<div class="col-md-4 shadow p-3 mb-5 rounded">
<div class="card">
<img src="https://cdn.pixabay.com/photo/2015/05/31/13/45/young-woman-791849_960_720.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title text-warning">Ux/Ui - Web</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a target="_blank"
href="https://br.cellep.com/estacao-hack-sp"
class="btn btn-outline-primary"
>
Saiba mais
</a>
</div>
</div>
</div>
<div class="col-md-4 shadow p-3 mb-5 rounded">
<div class="card">
<img src="https://cdn.pixabay.com/photo/2017/08/01/00/38/man-2562325_960_720.jpg" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title text-warning">Inglês Instrumental</h5>
<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>
<a target="_blank"
href="https://br.cellep.com/estacao-hack-sp"
class="btn btn-outline-primary"
>
Saiba mais
</a>
</div>
</div>
</div>
</div>
</section>
</main>
<footer class="footer bg-dark mt-auto py-3">
<div class="container text-center pt-2">
<span class="text-white fst-italic">
Todos os direitos reservados
</span>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>