-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (53 loc) · 1.45 KB
/
Copy pathindex.html
File metadata and controls
58 lines (53 loc) · 1.45 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
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>OCSGames</title>
<style>
body {
font-family: Arial, sans-serif;
background: #0d1117;
color: #c9d1d9;
text-align: center;
padding: 2em;
}
h1 {
color: #58a6ff;
margin-bottom: 0.5em;
}
p {
font-size: 1.2em;
color: #8b949e;
}
.links {
margin-top: 2em;
}
.links a {
display: block;
margin: 0.5em 0;
color: #58a6ff;
text-decoration: none;
font-size: 1.1em;
}
.links a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<h1>Welcome to OCSGames</h1>
<p>Explore our games and projects</p>
<div class="links">
<a href="MathGame/game.html" target="_blank">🎮 Game 1: Math Game Mul</a>
<a href="MathGameAdd/game.html" target="_blank">🎮 Game 2: Math Game Add</a>
<a href="SpellingGame/game.html" target="_blank">🎮 Game 3: Spelling Game (עברית)</a>
<!-- <a href="lala.html">lala</a> <br/>
<a href="gametest/index.html">game</a> <br/>
<a href="test_fork/index.html">test_fork-from playcanvas</a> <br/>
<a href="game2/index.html">game2 maker</a> <br/>
<a href="game3/index.html">game3 maker</a> <br/>
<a href="hangman/Index.html">hangman</a> <br/> -->
</div>
</body>
</html>