-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.26 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
<!DOCTYPE html>
<html>
<title>Artificial Intelligence</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.cn/w3css/4/w3.css">
<body>
<!-- Sidebar -->
<div class="w3-sidebar w3-light-grey w3-bar-block" style="width:15%">
<a href="./index.html"><h3 class="w3-bar-item">Artificial Intelligence</h3></a>
<a href="./lec2.html" class="w3-bar-item w3-button w3-large">Agents and environments</a>
<a href="./lec3.html" class="w3-bar-item w3-button w3-large">Uninformed Search</a>
<a href="./lec4.html" class="w3-bar-item w3-button w3-large">Informed Search</a>
<a href="./lec5.html" class="w3-bar-item w3-button w3-large">Local search</a>
<a href="./lec6.html" class="w3-bar-item w3-button w3-large">Informed Search</a>
<a href="./lec7.html" class="w3-bar-item w3-button w3-large">Expectimax Search</a>
<a href="./lec8.html" class="w3-bar-item w3-button w3-large">Markov Decision Process</a>
</div>
<!-- Page Content -->
<div style="margin-left:15%">
<div class="w3-container w3-teal">
<h1>Artificial Intelligence</h1>
</div>
<br>
<br>
<br>
<br>
<br>
<img src="./image/index.png" alt="" style="width:80%;position: relative; left: 200px;">
</div>
</body>
</html>