-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwalkman.html
63 lines (49 loc) · 2 KB
/
walkman.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- <link rel="stylesheet" type="text/css" href="ztylesnotap.css"> -->
<style>
.canvas {
/* padding-left: 50px; */
margin-left: 30px;
}
</style>
</head>
<meta name="viewport" content="width=device-width, initial-scale=0.5, maximum-scale=0.5, user-scalable=no" />
<body style="background-color:grey;">
</body>
<div class="gamepage-wrapper">
<!-- Basic header. Should hold simple branding and navigation. -->
<header class="gamepage-header">
<!-- Image provided by Eucalyp Studio in Artificial Intelligence from https://www.iconfinder.com/iconsets/artificial-intelligence-6 -->
<!-- <img id="site-logo" src="assets/iconfinder_ArtificialIntelligence29_2890576_blackwhite.png"> -->
<ul class="nav-content">
<!-- <li class="nav-list-item"><a class="nav-link-text" href="">Home</a></li> -->
<!-- <li class="nav-list-item"><a class="nav-link-text" href="https://www.linkedin.com/in/cole-ditzler-41b160133/" target="_blank">About</a></li> -->
</ul>
</header>
<!-- Container for page content. Contains and aligns instructions, game, and ads. -->
<div class="game-content-container">
<!-- Left side banner. Should contain instuctions for the game. -->
<aside class="gamepage-left-aside">
<h1>Buddemon</h1>
<ul>
</ul>
</aside>
<!-- Game container. Holds the game for this page scaled to fit. -->
<div class="game-container">
<div id="dog-image-container">
<canvas class="canvas" id="canvas" width="720" height="720" class="canvas"></canvas>
<script src="walkman.js"></script>
</div id="go">
</div>
<!-- Right side banner. No content for now. Perhaps ad-space in the future. -->
<aside class="gamepage-right-aside">
<!-- Add content here later. -->
</aside>
</div>
<!-- Simple footer. Just a copyright notice. -->
<footer class="games-footer">
</footer>
</div>
</html>