forked from fxjollois/cours-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (53 loc) · 2.55 KB
/
index.html
File metadata and controls
60 lines (53 loc) · 2.55 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
<!doctype html>
<html>
<head>
<title>SQL : cours et exercices</title>
<meta charset="utf-8">
<!-- favicon -->
<link rel="icon" type="image/ico" href="images/favicon-database.ico" />
<!-- jQuery -->
<script src="lib/jquery-3.3.1.js"></script>
<!-- DataTable -->
<link rel="stylesheet" href="lib/jquery.dataTables.min.css">
<script src="lib/jquery.dataTables.min.js"></script>
<!-- extensions pour avoir les boutons d'export des données -->
<script src="lib/dataTables.buttons.min.js"></script>
<link rel="stylesheet" href="lib/buttons.dataTables.min.css">
<script src="lib/buttons.html5.min.js"></script>
<script src="lib/pdfmake.min.js"></script>
<script src="lib/vfs_fonts.js"></script>
<!-- sql.js -->
<script src="lib/sql.js"></script>
<link rel="stylesheet" href="lib/interface.css">
<!-- ACE.js -->
<script src="lib/ace/ace.js"></script>
<!-- marked -->
<script src="lib/marked.min.js"></script>
<!-- highlights -->
<link rel="stylesheet" href="lib/highlight/styles/default.css">
<script src="lib/highlight/highlight.pack.js"></script>
<!-- <script>hljs.initHighlightingOnLoad();</script> -->
</head>
<body>
<header>
<h1>SQL</h1>
<h2>Cours et exercices</h2>
<div id = "titre"></div>
<div id = "bdd"></div>
<div id = "boutons">
<button id = "accueil">Accueil</button>
<button id = "lancer">Exécution</button>
<button id = "tables">Tables</button>
<button id = "schema">Schéma</button>
</div>
</header>
<section id = "interface">
</section>
<footer>
<p>Interface de cours SQL concernant uniquement la partie requêtage avec <code>SELECT</code> - Code disponible <a href="https://github.com/fxjollois/cours-sql" target="_blank">ici</a> - Réalisé par <a href="http://fxjollois.github.io" target="_blank">FX Jollois</a></p>
<p>Développé avec la librairie <a href="https://github.com/kripken/sql.js/" target="_blank">sql.js</a>, basée sur <a href="https://www.sqlite.org/" target="_blank">SQLite</a>. Taper <code>CTRL + ENTER</code> pour exécuter. <a href="presentation/">Présentation de l'application</a></p>
</footer>
<script src="lib/interface.js"></script>
</body>
</html>