blob: 5042d159dd3ac7c4259469a8c1c8e4facd8dc309 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html>
<head>
<title>Bounce the ball</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h2>Ball Bounce</h2>
<div id="header_links_div"></div>
<script src="js/header_links.js"></script>
<hr>
<p>You can get the android app for Ball Bounce
<a href="https://play.google.com/store/apps/details?id=org.neocities.autoart.ballbounce">here</a>.</p>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.2/p5.js"></script>
<script src="js/ballbounce.js"></script>
</body>
</html>
|