-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
124 lines (113 loc) · 2.3 KB
/
home.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
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
122
123
124
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Space</title>
<link rel="icon" href="https://s3-us-west-2.amazonaws.com/www.danielwebsite.com/Icon.png">
<style media="screen">
@font-face {
font-family: "Commodore";
src: url("gameFont1.ttf");
}
@font-face {
font-family: "Commodore2";
src: url("gameFont2.ttf");
}
.title1{
text-align: center;
font-family:"Commodore";
color: white;
font-weight: normal;
}
#homeCanvas{
background-color: black;
height: 350px;
border-radius: 0%;
}
.button{
width: 200px;
height: 50px;
border-radius: 25px;
border-color: #ffffff;
border-style: solid;
color: #ffffff;
text-decoration: bold;
font-family: "Commodore";
font-size: 25px;
text-align: center;
}
#playButton{
background-color: #880000;
}
#aboutButton{
background-color: #008800;
}
#creditsButton{
background-color: #000088;
}
.text1{
color: white;
font-family: "Commodore2";
}
body{
background-color: black;
}
#body-div{
width: 700px;
height: 500px;
border: 5px solid white;
}
#back-button{
margin-top: 20px;
border: 5px solid white;
background-color: black;
color: white;
height: 50px;
width: 710px;
font-family: "Commodore2";
text-decoration: underline;
}
</style>
</head>
<body>
<center>
<div id="body-div">
<h1 class="title1">Space</h1>
<br><br>
<b>
<a>
<center>
<button type="button" name="button" id="playButton" class="button">
Play
</button>
</center>
</a>
</b>
<br><br>
<b>
<a>
<center>
<button type="button" name="button" id="aboutButton" class="button">
About
</button>
</center>
</a>
</b>
<br><br>
<b>
<a>
<center>
<button type="button" name="button" id="creditsButton" class="button">
Credits
</button>
</center>
</a>
</b>
<br><br><br><br><br><br>
<p class="text1">Created By Jupiter Games</p>
</div>
</center>
<script src="jquery-3.4.1.min.js" defer></script>
<script src="homeScript.js" defer></script>
</body>
</html>