-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScratch.html
More file actions
64 lines (60 loc) · 2.82 KB
/
Scratch.html
File metadata and controls
64 lines (60 loc) · 2.82 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
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DKIDS Game page</title>
<link href="style.css" rel="stylesheet">
<link href="games.css" rel="stylesheet">
<link href="Logos/50x50.JPG" rel="icon">
</head>
<body onload="alert('Warning! The Scratch games tend to have a big lag on slow computers and require flash to run.');">
<div id="grad">
<nav class="nav">
<a href="index.html">Home</a>
<span class="selected">Game Development</span>
<a href="Programming.html">Programming Stuff</a>
<a href="about.html">About Me</a>
<a href="Other.html">Other</a>
</nav>
</div>
<nav class="nav2">
<a href="D-Multi.html">D-Multi info</a>
<span>Scratch Games</span>
<a href="GameMaker.html">Game Maker: Studio Games</a>
<a href="Games.html">Back to Game Menu</a>
</nav>
<h1>DKIDS Games</h1>
<br>
<div style="text-align: center; padding: 10px;">
<a href="Games/Scratch/FunCenter.html">
<div id="FunCenter" class="game" style="width: 181.4px;">
<p class="title">Fun Center</p>
<img src="Games/Scratch/Images/FunCenter.JPG" alt="Fun Center Game Image" style="width: 181.4px; height: 135.8px;">
<p>Fun Center is a game, containing a few minigames. These games include MadLibs, a Frog Maze, and Balloon Pop. Instructions are in the game.</p>
</div>
</a>
<a href="Games/Scratch/StarHunter.html">
<div id="StarHunter" class="game" style="width: 181.4px;">
<p class="title">Star Hunter</p>
<img src="Games/Scratch/Images/StarHunter.JPG" alt="Star Hunter Game Image" style="width: 181.4px; height: 135.8px;">
<p>Star Hunter is a game where you are a cat with a net, trying to catch stars in the deep of the ocean. Collect as many stars as you can without touching an octopus. Touch an octopus, it's game over. Press the green flag to try again.</p>
</div>
</a>
<a href="Games/Scratch/FishDestruction.html">
<div id="FishDestruction" class="game" style="width: 181.4px;">
<p class="title">Fish Destruction</p>
<img src="Games/Scratch/Images/FishDestruction.JPG" alt="Fish Destruction Game Image" style="width: 181.4px; height: 135.8px;">
<p>Use the arrow keys to avoid dangerous obstacles. But there's a catch. After you go forward, you can't go back. And you can't touch the edge of the screen.</p>
</div>
</a>
<a href="Games/Scratch/SpiderCrawl.html">
<div id="SpiderCrawl" class="game" style="width: 181.4px;">
<p class="title">Spider Crawl</p>
<img src="Games/Scratch/Images/SpiderCrawl.JPG" alt="Spider Crawl Game Image" style="width: 181.4px; height: 135.8px;">
<p>Once in Spider Crawl, press space to begin. Use the arrow keys to navigate a series of mazes and challenges, avoiding the green, always trying to touch the yellow.</p>
</div>
</a>
</div>
<script src="JavaScript.js"> </script>
</body>
</html>