-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
36 lines (28 loc) · 981 Bytes
/
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
<html>
<head>
<title>Il Magico Viaggio di Franchino</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/markdown-it/12.0.4/markdown-it.js"></script>
<script src="code.js"></script>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" media="screen and (max-width: 768px)" href="css/littlePage.css">
<link rel="stylesheet" media="screen and (min-width: 768px)" href="css/bigPage.css">
</head>
<body>
<table>
<tr>
<td>
<button class="scroller" onclick="scroll_up()">Prima Pagina</button>
</td>
</tr>
<tr>
<td>
<button class="scroller" onclick="scroll_down()">Ultima Pagina</button>
</td>
</tr>
</table>
<script>
populate();
</script>
<div id="box"></div>
</body>
</html>