-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (71 loc) · 2.75 KB
/
index.html
File metadata and controls
85 lines (71 loc) · 2.75 KB
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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/light-respi.css">
<link rel="stylesheet" href="css/dark-respi.css">
<title>Document</title>
<!-- Google Tag Manager -->
<!-- Google tag (gtag.js) -->
<script src="http://127.0.0.1:8001/js/analytics.js?v=1769877094" data-tracking-code="xpJ2SQPSrAsBrId8Eu6bYNIEQJ7eIEdm" data-site-id="2"></script>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-49Z6Q83Z7E"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-49Z6Q83Z7E');
</script>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-M9NBWXZ3');</script>
<!-- End Google Tag Manager -->
<script>
window.dataLayer = window.dataLayer || [];
let isDarkMode = false;
document.querySelector('.switch').addEventListener('click', () => {
isDarkMode = !isDarkMode;
document.body.classList.toggle('dark-mode', isDarkMode);
window.dataLayer.push({
'theme': isDarkMode ? 'dark' : 'light'
});
});
</script>
</head>
<body>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M9NBWXZ3"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<div class="body">
<section class="menu">
<nav>
<button class="switch">Clique sur l'icon pour changer de mode</button>
</nav>
</section>
<section class="title">
<div class="container">
<h1 class='text t1'>C:\Nom\> <span class='textclass'>Alexandre Solymos</span></h1>
<h1 class='text t2'>C:\Age\> <span class='textclass'>23 ans</span></h1>
<h1 class='text t3'>C:\Ville\> <span class='textclass'>Rouen</span></h1>
</div>
</div>
<div class="cards-container">
<a href="#" class="card">Carte 1</a>
<a href="#" class="card">Carte 2</a>
<a href="#" class="card">Carte 3</a>
<a href="#" class="card">Carte 4</a>
<a href="#" class="card">Carte 5</a>
<a href="#" class="card">Carte 6</a>
<a href="#" class="card special unique-card" id="specialCard">
Carte spéciale avec texte supplémentaire
</a>
</div>
</section>
</div>
</body>
<script src="js/min.js"></script>
</html>