Newer
Older
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Ecolyo est le service proposé par la Métropole de Lyon pour suivre et comprendre la consommation énergétique globale de votre foyer."
/>
<meta
http-equiv="Content-Security-Policy"
content="style-src 'self' https://fonts.googleapis.com; font-src 'self' https://fonts.gstatic.com;"
/>
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
<link rel="stylesheet" href="./style.css" />
<link
href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap"
rel="stylesheet"
/>
<link rel="icon" href="assets/icon.svg" />
<title>Ecolyo</title>
<style type="text/css">
* {
margin: 0;
line-height: 1;
font-family: 'Lato', sans-serif;
color: white;
}
html,
body {
height: 100%;
margin: auto;
background: #121212;
}
p {
margin-top: 1rem;
}
.container {
height: 100%;
display: flex;
align-items: center;
text-align: center;
justify-content: center;
}
.text-16-white {
font-weight: 900;
font-size: 1rem;
color: white;
}
</style>
</head>
<body>
<nav></nav>
<div class="container">
<section>
<img src="./icon.svg" alt="logo Ecolyo" height="80px" width="80px" />
<p class="text-16-white">Hors ligne</p>
<p class="text-16-white">
Vérifiez votre connexion pour lancer Ecolyo.
</p>
</section>
</div>
<footer></footer>
</body>