-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (66 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="description" content="" />
<title>PIM Documents</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3"
crossorigin="anonymous"
/>
<link href="../assets/dist/css/bootstrap.min.css" rel="stylesheet" />
<style>
.bd-placeholder-img {
font-size: 1.125rem;
text-anchor: middle;
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
@media (min-width: 768px) {
.bd-placeholder-img-lg {
font-size: 3.5rem;
}
}
</style>
<link href="heroes.css" rel="stylesheet" />
</head>
<body>
<main>
<div class="bg-dark text-secondary px-4 py-5 text-center min-vh-100">
<div class="py-5">
<h1 class="display-5 fw-bold text-white">Documentos de School One</h1>
<div class="col-lg-6 mx-auto">
<p class="fs-5 mb-4">
Como <b>Proyecto de Innovación y Mejora</b> hemos desarrollado una
plataforma para la escuela <b>Sophiano College</b>. Descarga la
última versión de los documentos desde aquí ⬇:
</p>
<div class="d-grid gap-2 d-sm-flex justify-content-sm-center">
<a
type="button"
href="./pim.docx"
class="btn btn-outline-info btn-lg px-4 me-sm-3 fw-bold"
download=""
>
Documento PIM
</a>
<a
type="button"
href="./expo.pptx"
class="btn btn-outline-light btn-lg px-4"
download=""
>
Diapositivas
</a>
</div>
</div>
</div>
</div>
</main>
<script src="../assets/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>