-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (37 loc) · 1.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Roma Bhattacharjee</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<h1>Roma's Projects</h1>
<div class="item">
<a href="https://roma0615.github.io/tetris/" target="_blank">
<img src="images/tetris.png" alt="Tetris">
<div class="caption">Tetris Implementation in Javascript</div>
</a>
</div>
<div class="item">
<a href="https://roma0615.github.io/maze_generation/" target="_blank">
<img src="images/maze.png" alt="Maze Generator">
<div class="caption">Maze Generator</div>
</a>
</div>
<div class="item">
<a href="https://roma0615.github.io/uber_tic_tac_toe/" target="_blank">
<img src="images/ultimate_ttt.png" alt="Ultimate Tic Tac Toe">
<div class="caption">Ultimate Tic Tac Toe (1-computer)</div>
</a>
</div>
<div class="item">
<a href="https://ultimate-tic-tac-toe-0m5c.onrender.com/" target="_blank">
<img src="images/ultimate_ttt_online.png" alt="Ultimate Tic Tac Toe">
<div class="caption">Ultimate Tic Tac Toe (online)</div>
<div class="caption">(Might take a few seconds to load)</div>
</a>
</div>
</body>
</html>