-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 850 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
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Playground</title>
</head>
<body>
<h1>Playground</h1>
<p>
These are just some code experiments that I'm making for fun and learning
:)
</p>
<p>
You can view the
<a href="https://github.com/kungpaogao/playground/">source code here.</a>
</p>
<h2>Projects</h2>
<ul>
<li><a href="src/tictactoe/ttt.html">Tic Tac Toe</a></li>
<p>
built using html, css, js after realizing idk much about DOM
manipulation and vanilla js stuff
</p>
<li><a href="src/mines/mines.html">Mines (wip)</a></li>
<p>
built using html, css, js after realizing i still don't know enough
</p>
</ul>
</body>
</html>