-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharkanoid.html
89 lines (81 loc) · 3.96 KB
/
arkanoid.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="Arkanoid game in JavaScript">
<meta name="author" content="Dominik Blek">
<title>Arkanoid clone in JavaScript</title>
<!-- Bootstrap core CSS -->
<link href="https://getbootstrap.com/docs/4.1/dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/main.css" rel="stylesheet">
</head>
<body>
<header>
<div class="collapse bg-black" id="navbarHeader">
<div class="container">
<div class="row">
<div class="col-sm-4 col-md-2 py-2">
<img src="img/avatar.png" class="img-fluid rounded-circle" alt="Dominik Blek">
</div><!-- col -->
<div class="col-sm-8 col-md-5 py-4">
<p class="text-white">I'm a web designer and English/Polish translator and editor. I have experience in
education, games, movies and literature. I also do some simple video editing and 2d game art.<br> I am
also European 4 kyu in GO ;)</p>
</div><!-- col -->
<div class="col-sm-4 offset-md-1 py-2">
<h4 class="text-white">Contact</h4>
<ul class="list-unstyled">
<li><a href="https://twitter.com/ZyBeX86" class="text-white">Follow on Twitter</a></li>
<li><a href="https://www.facebook.com/zybex86" class="text-white">Like on Facebook</a></li>
<li><a href="mailto:dominikblek86@gmail.com" class="text-white">Email me</a></li>
</ul>
</div><!-- col -->
</div><!-- row -->
</div><!-- container -->
</div><!-- collapse -->
<div class="navbar navbar-dark bg-black shadow-sm">
<div class="container d-flex justify-content-between">
<a href="http://zybex86.github.io" class="navbar-brand d-flex align-items-center">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor"
stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="mr-2">
<circle cx="12" cy="13" r="4"></circle>
</svg>
<strong>Dominik Blek</strong>
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarHeader" aria-controls="navbarHeader"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
</div><!-- container -->
</div><!-- navbar -->
</header>
<main role="main">
<section class="jumbotron text-center">
<h1 class="jumbotron-heading text-dark">My Arkanoid game in JavaScript</h1>
<canvas id="gameCanvas" width="800" height="600"></canvas>
</section>
</main>
<footer class="text-muted">
<div class="container">
<p class="float-right">
<a href="#">Back to top</a>
</p>
© 2018, created by <em>Dominik Blek</em>.
</div>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script>
window.jQuery || document.write('<script src="../../assets/js/vendor/jquery-slim.min.js"><\/script>')
</script>
<script src="https://getbootstrap.com/docs/4.1/assets/js/vendor/popper.min.js"></script>
<script src="https://getbootstrap.com/docs/4.1/dist/js/bootstrap.min.js"></script>
<script src="https://getbootstrap.com/docs/4.1/assets/js/vendor/holder.min.js"></script>
<script src="js/arkanoid.js"></script>
</body>
</html>