-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (45 loc) · 1.82 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Index Page</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="header">
<div class="container">
<a href="#">
<h1 class="h1">Lingjie Zhang</h1>
</a>
<ul class="nav-icon">
<li><a href="https://github.com/XGuGu/JS-Algorithm"><img class="icon" src="image/icons/Github.png"></a></li>
<li><a href="https://www.linkedin.com/in/lingjie-zhang-1109b5171/"><img class="icon" src="image/icons/LinkedIn.png"></a></li>
<li><a href="http://lingjzhang.site"><img class="iconperson" src="image/icons/person-icon.png"></a></li>
</ul>
</div>
</div>
<div class="full-projects">
<div class="container2">
<h2 class="h2">Algorithm Projects (JavaScript)</h2>
<a href="Percolation/percolation.html" class="project-list">
1. Percolation
</a>
<div class="caption">
<img class="projectImg"src="image/percolation.png" alt="">
<p>
A algorithm visualization for a percolation model. Using union-find and optimized to weighted-quick-union.
</p>
</div>
<a href="EightPuzzle/puzzle.html" class="project-list">
2. 8 Puzzle Solver
</a>
<div class="caption">
<img class="projectImg"src="image/8puzzle.png" alt="">
<p>
Solve the sliding puzzle with different graph algorithms.
</p>
</div>
</div>
</div>
</body>
</html>