-
Notifications
You must be signed in to change notification settings - Fork 0
/
dangers-dark-patterns.html
executable file
·77 lines (68 loc) · 2.72 KB
/
dangers-dark-patterns.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8" />
<title>Dangers - Dark Patterns</title>
<link rel="shortcut icon" type="image/svg" href="img/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Art Discovery" />
<meta name="copyright" content="©ArtDiscovery" />
<!-- FILES -->
<link rel="stylesheet" href="style/css/style.css" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link
href="https://fonts.googleapis.com/css2?family=Merriweather:wght@900&display=swap"
rel="stylesheet"
/>
</head>
<!-- BODY -->
<body>
<div class="mobile-overlay">
<span>
Les affiches de l'exposition étant trop grandes pour les mobiles, nous
vous invitons à la découvrir sur grand écran (ordis, tablettes) enroulé
dans un bon plaid, avec un bon thé !
<br />
<br />
À bientôt !
</span>
</div>
<!-- Layouts -->
<div class="layout-container from-right">
<label class="layout a3 first-layout" id="layout1">
<img src="img/affiches/dangers/dark-patterns/1.webp" alt="" />
<input disabled type="checkbox" id="1" checked />
<label class="layout a4 right-bottom" id="layout2">
<img src="img/affiches/dangers/dark-patterns/2.webp" alt="" />
<input type="checkbox" id="2" />
<label class="layout a4 bottom-right" id="layout3">
<img src="img/affiches/dangers/dark-patterns/3.webp" alt="" />
<input type="checkbox" id="3" />
<label
class="layout a4 middle-right-bottom final-layout"
id="layout4"
>
<img src="img/affiches/dangers/dark-patterns/4.webp" alt="" />
<div
class="link next next-button right orange arrow-container-hover"
>
<div class="arrow"></div>
<a href="dangers-duree-attention.html" class="next-link"></a>
</div>
</label>
</label>
</label>
</label>
</div>
<!-- Next Page layout -->
<div class="no-display-next-layout">
<img src="img/affiches/dangers/duree-attention/1.webp" alt="" />
<img src="img/affiches/dangers/duree-attention/2.webp" alt="" />
</div>
<!-- Scripts -->
<script type="text/javascript" src="js/layoutTravel.js"></script>
<script type="text/javascript" src="js/mouseParralax.js"></script>
<script type="text/javascript" src="js/simulateClick.js"></script>
<script type="text/javascript" src="js/next.js"></script>
</body>
</html>