forked from ExplodingCB/HTMLArcade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arcade.html
186 lines (171 loc) · 3.52 KB
/
arcade.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<body backround="https://external-content.duckduckgo.com/iu/?u=https%3A%2F%2Fwww.pntdns.com%2Fimages%2Fdedicated_servers.jpg&f=1&nofb=1">
<html>
<head>
<title>
HTML Arcade
</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: "Lato", sans-serif;
}
.sidenav {
height: 100%;
width: 160px;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
padding-top: 20px;
}
.sidenav a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
}
.sidenav a:hover {
color: #f1f1f1;
}
.main {
margin-left: 160px; /* Same as the width of the sidenav */
font-size: 28px; /* Increased text to enable scrolling */
padding: 0px 10px;
}
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
</style>
</head>
<body>
<div class="sidenav">
<a href="index.html">Home</a>
<hr size="" width="" color="">
<a href="arcade.html">Arcade Games</a>
<a href="classic.html">Classic Games</a>
<a href="https://xernar.com">Games By Xernar.</a>
</div>
<div class="main">
<html>
<center>
<head>
<title>Mainpage</title>
<style>
.button {
background-color:#990000;
border: none;
color: white;
padding: 20px 34px;
text-align: center;
text-decoration: underline;
display: inline-block;
font-size: 45px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<a href="tetris.html" class="button">Play Tetris</a>
</body>
</html>
<html>
<center>
<head>
<title>Mainpage</title>
<style>
.button {
background-color:#990000;
border: none;
color: white;
padding: 20px 34px;
text-align: center;
text-decoration: underline;
display: inline-block;
font-size: 50px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<a href="pacman.html" class="button">Play Pacman</a>
</body>
</html>
<html>
<center>
<head>
<title>Mainpage</title>
<style>
.button {
background-color:#990000;
border: none;
color: white;
padding: 20px 34px;
text-align: center;
text-decoration: underline;
display: inline-block;
font-size: 50px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<a href="snake.html" class="button">Play Speed Snake</a>
</body>
</html>
<html>
<center>
<head>
<title>Mainpage</title>
<style>
.button {
background-color:#990000;
border: none;
color: white;
padding: 20px 34px;
text-align: center;
text-decoration: underline;
display: inline-block;
font-size: 45px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<a href="breakout.html" class="button">Play Breakout</a>
</body>
</html>
<html>
<center>
<head>
<title>Mainpage</title>
<style>
.button {
background-color:#990000;
border: none;
color: white;
padding: 20px 34px;
text-align: center;
text-decoration: underline;
display: inline-block;
font-size: 45px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<a href="pong.html" class="button">Play Pong</a>
</body>
</html>
</div>
</body>
</html>