-
Notifications
You must be signed in to change notification settings - Fork 0
/
other3.html
53 lines (49 loc) · 1.98 KB
/
other3.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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index.css">
<script type="module" src="https://pyscript.net/releases/2024.1.1/core.js"></script>
<!-- bokeh scripts -->
<script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-3.2.2.js"></script>
<script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-widgets-3.2.2.min.js"></script>
<script type="text/javascript" src="https://cdn.bokeh.org/bokeh/release/bokeh-tables-3.2.2.min.js"></script>
<script type="text/javascript">
Bokeh.set_log_level("info");
</script>
<!-- panel scripts -->
<script defer src="https://cdn.jsdelivr.net/npm/@holoviz/[email protected]/dist/panel.min.js"></script>
<title>ShorpAzha | Other</title>
</head>
<body>
<div id="mySidepanel" class="sidepanel">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">x</a>
<a href="index.html">Acceuil</a>
<a href="other.html">Other</a>
<a href="help.html">Contact</a>
</div>
<button class="openbtn" onclick="openNav()">☰</button>
<script>
function openNav() {
document.getElementById("mySidepanel").style.width = "250px";
}
function closeNav() {
document.getElementById("mySidepanel").style.width = "0";
}
</script>
<h1>Mathématiques avec python</h1>
<p>Calcul de pi et de e</p>
<!--<div id="simple_app">
<script class='script_python' type="py" src="script/main.py" config="script/config.toml"></script>
</div>-->
<div class="pagination">
<a href="other2.html">«</a>
<a href="other.html">1</a>
<a href="other2.html">2</a>
<a class='active' href="other3.html">3</a>
<a href="other4.html">4</a>
<a href="other4.html">»</a>
</div>
</body>
</html>