-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (51 loc) · 2.24 KB
/
index.html
File metadata and controls
121 lines (51 loc) · 2.24 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<html>
<head>
<title>The Sandbox</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script><script src="/assets/jquery.expect.js"></script><script src="/assets/web_libs.js?v5"></script>
<script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript"src="https://s3.amazonaws.com/codecademy-content/courses/hour-of-code/js/alphabet.js"></script>
<style>
body{
background-color: black;
color: white
}
</style>
</head>
<body>
<nav>
<a href="Project1.html">Numba 1</a>
<a href="Real Site.html">Numba 2</a>
</nav>
<canvas id="myCanvas" height="500" width="1000"></canvas>
<script type="text/javascript"src="https://s3.amazonaws.com/codecademy-content/courses/hour-of-code/js/bubbles.js"></script>
<script type="text/javascript" defer="">
var red = [ 0 * (360 / 8) , 100, 50];
var orange = [ 1 * (360 / 8) - 10, 100, 50];
var yellow = [ 2 * (360 / 8) - 20, 100, 50];
var green = [ 3 * (360 / 8) - 30, 100, 50];
var blue = [ 4 * (360 / 8) , 100, 50];
var indigo = [ 5 * (360 / 8) , 100, 50];
var violet = [ 6 * (360 / 8) , 100, 50];
var purple = [ 7 * (360 / 8) , 100, 50];
if(10 < 3) {
bubbleShape = "circle";
}
else {
bubbleShape = "square";
}
var myName = "SandBox King";
var letterColors = [red, orange, yellow, green, blue, indigo, violet, purple]
drawName(myName, letterColors);
bounceBubbles(myName, letterColors);
</script>
<p style="text-align:center;">
Hi! I'm Jermaine, and this is THE SANDBOX EVOLUTION
</p>
<img src="images/s.png"/>
<p style="text-align:center;">
Craft or destroy amazing worlds with your godly touch in The Sandbox Evolution, the #1 pixel art world creation game.
Build anything you can dream up with advanced physics, over 170 elements and fully controllable heroes. In The Sandbox Evolution, worlds are up to 10x bigger.
There are no limits!You first start with the basic hero Avatar. There are offline levels that you can get Mana and Karma to unlock new elements, and Karma is VERY hard to get. Karma is used to unlock awesome new elements and heroes to play with. You can also play uploaded levels from other players
</p>
</body>
</html>