-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (56 loc) · 2.39 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link id='pagestyle' href="style/text.css" rel="stylesheet">
<link id='pagestyle' href="style/home.css" rel="stylesheet">
<link id='pagestyle' href="style/style.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400&display=swap" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
<link href='https://unpkg.com/[email protected]/css/boxicons.min.css' rel='stylesheet'>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.1.1/css/all.css">
<script src="https://www.w3schools.com/lib/w3.js"></script>
<script type="text/javascript" src="js/data.js"></script>
<script type="text/javascript" src="js/script.js"></script>
<link rel="icon" href="icon/icon.png">
<title>Starter</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<header>
<div></div>
<div>
<div style="background-color: var(--color-bouton);">
<li id="Bmenu" style="display: none;"><i class='bx bx-menu'></i></li>
<li id="Bhome"><i class='bx bx-home-alt'></i></li>
<li id="Bnote"><i class='bx bxs-book-open'></i></li>
</div>
</div>
<div style="justify-content: flex-end;">
<a id="edit" target="_blank"><i class='bx bxs-pencil'></i></a>
</div>
</header>
<nav style="display: none;">
<h2>Modes</h2>
<div id="mode" style="margin-bottom: 0.1cm;">
<li id='btn-general' class="mode">Général</li>
<li id='btn-py'>Python</li>
<li id='btn-r'>R</li>
<li id='btn-sas'>SAS</li>
</div>
<div id="menu" style="padding-bottom: 15px;">
</div>
</nav>
<section>
<article style="padding-top: 2cm;"></article>
<article id="contenu">
</article>
<article id="contenuHome">
</article>
<article style="padding-bottom: 2cm;"></article>
</section>
</body>
</html>