-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathindex.html
61 lines (50 loc) · 1.7 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, user-scalable=no"
/>
<link href="index.css" rel="stylesheet" />
<link
rel="stylesheet"
as="style"
crossorigin
href="https://cdn.jsdelivr.net/gh/orioncactus/[email protected]/dist/web/static/pretendard-dynamic-subset.css"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/matter-js/0.19.0/matter.min.js"></script>
<title>Watermelon</title>
<meta property="og:type" content="website" />
<meta property="og:site_name" content="watermelon" />
<meta property="og:title" content="watermelon" />
<meta property="og:description" content="Play Watermelon Game!" />
<meta property="og:image" content="assets/img/10.png" />
<meta property="og:image:type" content="image/png" />
<link rel="icon shortcut" href="assets/img/10.png" type="image/x-icon" />
</head>
<body>
<div class="container">
<div class="item"></div>
<div class="item" id="game">
<div id="overlay">
<button id="playAgainButton" onclick="location.reload()">
Play Again
</button>
</div>
<canvas id="canvas"></canvas>
<div id="floor"></div>
</div>
<div class="empty"></div>
<div class="empty"></div>
<div class="item" id="footer">
<div id="links">
<a href="https://shinyou.ng">shinyoung</a>
<a href="https://github.com/choshinyoung/watermelon">Github</a>
</div>
<p>Made with ❤️ by choshinyoung</p>
</div>
</div>
<script defer src="index.js"></script>
</body>
</html>