forked from Quentin-Defay/site-musee-IRL.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (91 loc) · 3.1 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
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="fr">
<head>
<title>Musée IRL Nantes - Site officiel</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- Balises pour les mobiles -->
<meta name="theme-color" content="#F0F0F0" />
<!--/Balises pour les mobiles -->
<meta name="description" content="Site vitrine du musée IRL" />
<meta name="author" content="Quentin DEFAY" />
<link rel="icon" href="./favicon.ico" />
<link rel="stylesheet" href="./css/structure.css" />
<link rel="stylesheet" href="./css/accueil.css" />
<!-- Police Saffran -->
<link rel="stylesheet" href="https://use.typekit.net/qhw0ooe.css" />
</head>
<body class="preload">
<div class="root" id="root">
<header>
<!-- Injection JS -->
</header>
<main>
<section class="img-accueil">
<h1>Bienvenue dans le musée IRL de l’art digital à Nantes</h1>
</section>
<p class="description">
IRL est un musée dédié à l’art digital bousculant les codes
traditionnels de l’art physique. Les nouvelles technologies servent la
créativité des artistes, rendant possibles de nouvelles pratiques
artistiques.
</p>
<!-- Partie Découvrir Exposition -->
<section class="box-expo">
<h1>Découvrir nos expositions</h1>
<article class="item">
<img src="./img/img15.jpeg" alt="bandeaux led triangle" />
<div class="box-action">
<h2>Expositions temporaires</h2>
<div class="shadow">
<button onclick="switchOnglet('onglet1', 1)">
Voir les expositions
</button>
</div>
</div>
</article>
<article class="item">
<img src="./img/img13.jpeg" alt="musée d'oeuvre d'art" />
<div class="box-action">
<h2>Expositions temporaires</h2>
<div class="shadow">
<button onclick="switchOnglet('onglet2', 1)">
Voir les expositions
</button>
</div>
</div>
</article>
</section>
<!-- /Partie Découvrir Exposition -->
<!--Partie Infos Pratique -->
<section class="box-info">
<h1>Infos pratiques</h1>
<a href="./routes/info.html">Voir toutes les infos pratiques ></a>
<h2>Horaires d'ouverture</h2>
<p>
Du lundi au jeudi <span>10h - 18h</span><br />Du vendredi au
dimanche
<span>10h - 20h</span>
</p>
<h2>Adresse du musée</h2>
<p>3 Boulevard Léon Bruteau<br />42000 Nantes</p>
</section>
<!-- /Partie Infos Pratique -->
</main>
<footer>
<!-- Injection JS -->
</footer>
</div>
<!-- Script Personel (Function ...) -->
<script type="text/javascript">
// Supprimer Class body preload après chargement
window.onload = () => {
document.body.classList.remove("preload");
injectionFooter("./");
injectionHeader("index");
footerPosition();
};
</script>
<script type="text/javascript" src="./js/function.js"></script>
</body>
</html>