This repository has been archived by the owner on Mar 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (54 loc) · 2.78 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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Flace | Accueil</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" id="themestyle" href="themes/auto.css">
<link rel="icon" type="image/x-icon" href="./img/faviconcolor-fixed.png">
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="manifest" href="manifest.json">
<meta name="msapplication-TileColor" content="#FFFFFF">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<meta property="og:image" content="/img/faviconcolor-fixed.png">
<meta content="#ffffff" data-react-helmet="true" name="theme-color">
<meta name="description" content="Flace est un site d’apprentissage fondé sur l’utilisation de flashcards.">
</head>
<body>
<div class="navbar">
<img onclick="location.href = './'" src="img/faviconcolor-fixed.png" alt="flacelogo">
<i onclick="location.href = './'" class='bx bx-home hover'></i>
<i onclick="location.href = 'matiere.html'" class="bx bx-card"></i>
<i onclick="location.href = 'st.html'" class='bx bx-slider-alt '></i>
<i onclick="location.href = 'info.html'" class=' bx bx-info-circle'></i>
</div>
<div class="matiere">
<i onclick="history.back()" class="bx bx-left-arrow-alt"></i>
<p>Accueil</p>
<i onclick="location.reload()" class="bx bx-redo"></i>
</div>
<div class="home" id="home">
<h1 data-aos="fade-right" id="h1" >Bienvenue sur <span class="gradient">Flace</span></h1>
<br>
<div class="homebuttons" data-aos="zoom-in">
<button class="start" onclick="location.href = 'matiere.html'">Accéder à la page des matières</button>
<button class="start gray" onclick="location.href = 'info.html'">Infos</button>
</div>
<!-- taches d'encre stylé -->
<div class="shapes">
<div class="shape color1"></div>
<div class="shape color2"></div>
<div class="shape color3"></div>
</div>
</div>
<script>
document.getElementById('h1').innerHTML = 'Bienvenue sur <span class="gradient">Flace</span>, ' + localStorage.getItem('username')
</script>
<script>
AOS.init();document.getElementById("themestyle").setAttribute("href", `themes/${localStorage.getItem("theme")}.css`);</script>
<script src="js/main.js"></script>
</body>
</html>