-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·80 lines (71 loc) · 3.34 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta property="og:title" content="Leo" />
<meta property="og:image" content="leo-featured.png" />
<meta property="og:description"
content="Leo is a pixel RPG built with Vanilla Javascript, HTML Canvas, and SCSS." />
<meta propety="og:url" content="https://yangc95.github.io/Leo" />
<meta name="author" content="Christine Yang" />
<link rel="icon" href="src/assets/images/LeoIcon.png" />
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link href="https://fonts.googleapis.com/css2?family=Kiwi+Maru&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" integrity="sha512-iBBXm8fW90+nuLcSKlbmrPcLa0OT92xO1BIsZ+ywDWZCvqsWgccV3gFoRBv0z+8dLJgyAHIhR35VZc2oM/gI1w==" crossorigin="anonymous" />
<link rel="stylesheet" href="./dist/main.css" />
<title>Leo</title>
</head>
<body>
<h1>Welcome to Cat Academy</h1>
<div class="canvas-div">
<!-- <div class="Leo">
<img class="Leo_sprite pixelize" src="src/assets/images/sprite/LeoWalkCycle.png" alt="Character">
</div> -->
<!-- comment back in -->
<a class="play-button" href="#">
<span>Let</span>s<span>Play</span>
</a>
<div id="start-play">
<!-- These are part of story text, how can I store these
so that they don't just take up more space in the html file? -->
<p id="textline" class="element1">Use arrow keys to move Leo around</p>
<p id="textline" class="element2">Press the space bar to chat</p>
<p id="textline" class="element3">or enter houses</p>
</div>
<!-- comment back in -->
<div id="restart">
<a class="restart-button" href="#">Play Again</a>
</div>
<div>
<audio src=""></audio>
<img src="./src/assets/images/speaker.png" id="thumbnail"/>
</div>
<canvas id="mycanvas"></canvas>
</div>
<!-- <button id="DOM-demo">DOM Demo</button> -->
<footer>
<!-- <h1>Christine Yang</h1>
<h2>Connect with me</h2> -->
<div class="social-footer">
<ul class="social-ul">
<li class="social-li">
<a href="https://github.com/yangc95/Leo">
<i class="fab fa-github"> Github</i>
</a>
</li>
<li class="social-li">
<a href="https://www.linkedin.com/in/christine-yang-4204a67b/">
<i class="fab fa-linkedin-in"> LinkedIn</i>
</a>
</li>
</ul>
</div>
<!-- <div class="directions">
<p>Move Leo around with your arrow keys</p>
</div> -->
</footer>
<script src="./dist/main.js"></script>
</body>
</html>