-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.html
150 lines (118 loc) · 4.29 KB
/
app.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="site web MONA: accueil">
<meta name="author" content="Maison MONA">
<title>MONA | accueil</title>
<!-- Bootstrap core CSS -->
<link href="./vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Open+Sans">
<!-- Custom styles for this template: Modern Business -->
<link href="./css/modern-business.css" rel="stylesheet">
<!-- notre fichier CSS: MONA -->
<link href="./css/mona.css" rel="stylesheet">
</head>
<body>
<style>
body{
max-width: 450px;
padding: 0.5em;
height: 100vh;
background-image: url('../img/app-background-neat.png');
/*border: solid 6pt #fae800;*/
}
p{
text-align: center;
font-size: 20px;
line-height: 24pt;
}
hr{
margin-top: 2em;
max-width: 40%;
height: 0.75pt;
color: black;
}
a {
color: rgb(75, 74, 74);
}
#zone-texte{
overflow-x: scroll;
max-height: 50vh;
display: grid;
}
#zone-image{
height: 15vh;
display: grid;
margin-top: 1rem;
}
footer{
position: fixed;
top: calc(100vh - 4em);
right: 0pt;
}
#section > p{
font-size: 16px;
line-height: 16pt;
margin-bottom: 2em;
}
.store-icons-here {
width: 60%;
display: flex;
justify-content: center;
}
.store-icons-here img {
margin: 0px 3px;
max-height: 10vh;
}
</style>
<div class="box">
<a id="top-img" class="store-icons" href="./index.html">
<img src="./img/logo.png" width="50%"
/></a>
<div id="zone-texte" >
<p class="grid-item">
Une application mobile gratuite pour découvrir l'art public, les lieux culturels et le patrimoine du Québec.</p>
<div id="section">
<p class="grid-item">
Découvrez, photographiez et ajoutez à votre collection. Évaluez votre expérience avec des notes et commentaires. Promenez-vous, relevez des défis et accumulez des reconnaissances.
</p>
</div>
</div>
<div class="links-grid-2">
<div >
<a href="https://apps.apple.com/ca/app/MONA/id1462822498?l=fr">
<img src="img/AppStore.png" class="img-small" width="150px" />
</a>
</div>
<div>
<a href="https://play.google.com/store/apps/details?id=com.maison.mona">
<img src="img/GooglePlay.png" class="img-small" width="150px"/>
</a>
</div>
</div>
</div>
<div class="box">
<!--just to remember how to use gradients:
background-color: #4D58CB; //for the browsers that don't support gradients
background-image: linear-gradient(#8289d0, #4D58CB)
-->
<h5 style="margin-top: 10px; text-align: center;">Prochains parcours</h5>
<div class="linktree" style="margin-bottom: 1em; background-color: #DADCF1">
<a href="https://www.zeffy.com/fr-CA/ticketing/d029f7bc-2c38-4978-abe2-23b493afc770" style="color: black"><img src="/img/button_map_black.png" alt="icone web"> 27 septembre | Hochelaga</a>
</div>
<div class="linktree" style="background-color: #DADCF1; color: black ">
<a href="https://www.zeffy.com/fr-CA/ticketing/2df92575-820d-4c6d-abc6-6aca30d12c4e" style="color: black"><img src="/img/button_map_black.png" alt="icone web"> 28 septembre | Parc-Extension</a>
</div>
</div>
<div class="box">
<h5 style="margin-top: 10px; text-align: center;">Suivez-nous!</h5>
<div class="links-grid-4-text">
<a href="https://www.facebook.com/MONA.ArtPublic"><img src="/img/button_FB.png" alt="facebook"></a>
<a href="https://www.instagram.com/mona.artpublic/"><img src="/img/button_IG.png" alt="instagram"></a>
<a href="https://monamontreal.org/" ><img src="/img/button_siteWeb.png" alt="site web"></a>
<a href="mailto:[email protected]"><img src="/img/button_mail.png" alt="email"></a>
</div>
</div>
</body>