-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (39 loc) · 1.63 KB
/
Copy pathindex.html
File metadata and controls
48 lines (39 loc) · 1.63 KB
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
47
48
<!DOCTYPE html>
<html lang="th">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ห้องรวมเกม</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="header">
<h1>🎮 My Games</h1>
<p>รวมโปรเจกต์ไร้สาระที่ผมเขียนขึ้นมาเอง</p>
<button onclick="warpRandom()">🎲 สุ่มเล่นเลย (ถ้าไม่รู้จะเลือกอะไร)</button>
</div>
<div class="gallery">
<a href="Tower of Chess/index.html" class="card red">
<h2>♟️ Tower of Chess</h2>
<p>หมากรุกไม่ธรรมดา</p>
</a>
<a href="NEON HEAD SOCCER/index.html" class="card green">
<h2>⚽ NEON HEAD SOCCER</h2>
<p>แตะบอล2D</p>
</a>
<a href="SYSTEM REJECTION/index.html" class="card dark">
<h2>🦠 SYSTEM REJECTION</h2>
<p>อย่าปล่อยให้สายเกินไป</p>
</a>
<a href="ECHOLOCATION THE BLIND MAZE/index.html" class="card orange">
<h2>🔊 ECHOLOCATION THE BLIND MAZE</h2>
<p>มันจ้องคุณอยู่...</p>
</a>
<a href="#" class="card dashed">
<h2>➕ Coming Soon</h2>
<p>รอไอเดียใหม่ๆ...</p>
</a>
</div>
<script src="script.js"></script>
</body>
</html>