-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
55 lines (40 loc) · 1.37 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
<!DOCTYPE html>
<html>
<head>
<meta charset = "UTF-8">
<title>Strapostille</title>
<link rel="stylesheet" href="./src/style/style.css">
</head>
<body>
<div class="app">
<div class="main">
<div class="lateral">
<li>
<button class="page" onclick="document.location='./src/ann_menu.html'">Annotation</button>
<button class="page" onclick="document.location='./src/tutorial.html'">Tutoriels</button>
</li>
</div>
<div class="content">
<div class="logo">
<img src="./src/style/img/Stra.png" width="100px" height="100px" style="margin-left: 45%; margin-top:2%;">
</div>
<div class="description">
<h1> Bienvenue sur STRAPOSTILLE. </h1>
<br>
Cette application vous permet d'annoter des textes au format suivant :
<ul>
<li> TXT </li>
<li> JSON </li>
<li> Excel</li>
<li> CSV </li>
</ul>
<br>
Vous pouvez dès à présent <button class="AnnoterBtn" onClick="document.location='./src/ann_menu.html'">annoter</button> ou aller sur la page
<button class="TutoBtn" onClick="document.location='./src/tutorial.html'">Tutoriels</button>.
</div>
</div>
</div>
</div>
<script src="./index.js"></script>
</body>
</html>