-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
24 lines (19 loc) · 858 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>AAN</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>
<div class="container-fluid" style="background-color:#e3e5e8; max-width:620px; margin-top:15px;">
<h2>Apprentissage Automatique Numérique</h2>
<ul class="list-group center-block text-center">
<li class="list-group-item"><a target="_blank" href="./iris.html" rel="nofollow">Classifieur Bayésien naïf</a></li>
<li class="list-group-item"><a target="_blank" href="./perceptron.html" rel="nofollow">Perceptron</a></li>
<li class="list-group-item"><a target="_blank" href="./Graph-HMM.html" rel="nofollow">Graph-HMM</a></li>
</ul>
</div>
</body>
</html>