-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (83 loc) · 2.79 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
<!DOCTYPE html>
<html>
<head>
<title>Comunicador CAA Digital</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<style>
* {
font-family: "Montserrat", sans-serif;
}
</style>
</head>
<body>
<div
style="height: 100vh"
class="d-flex justify-content-between d-flex align-items-center p-4 container"
>
<div class="w-50 pe-4 me-4" style="max-width: 500px">
<h1 style="font-size: 2.5em" class="fw-bold mb-4">
Comunicador CAA Digital
</h1>
<p class="text-body-tertiary mb-5" style="text-align: justify">
Comunicador CAA para TEL es una aplicación diseñada para ayudar a
personas con trastorno en el desarrollo del lenguaje mediante el uso
de la Comunicación Aumentativa y Alternativa (CAA).
</p>
<div class="pe-4">
<a
href="https://play.google.com/store/apps/details?id=com.vanessadavo.comunicadorcaadigital"
class="btn btn-dark d-flex align-items-center justify-content-center w-100 mb-4"
>
<img
style="width: 22px"
class="me-3"
src="https://cdn-icons-png.flaticon.com/512/732/732208.png"
alt=""
/>
<div class="d-flex flex-column me-3 justify-content-start">
<span class="fw-light opacity-50">Disponible en</span>
<span class="fw-light">Google Play</span>
</div>
</a>
<a
class="btn btn-primary w-100 mb-4 d-flex align-items-center justify-content-center"
href="politica.html"
>
<img
style="width: 22px"
class="me-3"
src="assets/images/shield.png"
alt=""
/>
<div class="d-flex flex-column me-3 justify-content-start">
<span class="fw-light opacity-50">Ir a</span>
<span class="fw-light">Política de privacidad</span>
</div>
</a>
</div>
</div>
<div class="w-50 h-100 px-2">
<div
style="border-radius: 1.25em"
class="w-100 h-100 border overflow-hidden d-flex justify-content-center align-items-center"
>
<img
style="object-position: center"
class="object-fit-cover rounded h-100 w-100"
src="assets/images/landing_image.png"
alt=""
/>
</div>
</div>
</div>
</body>
</html>