-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1.4 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
<!DOCTYPE html>
<html lang="en">
<head>
<title id="pageTitle">The Garden Project</title>
<link rel="icon" type="image/png" href="assets/sprites/pageIcon.png">
<link rel="stylesheet" href="assets/css/stylesheet.css">
<meta property="og:title" content="The Garden Project" />
<meta property="og:description" content="A simple, idle-style planting game; Grow your dream garden, one click at a time!" />
<meta property="og:image" content="assets/sprites/Banner.png" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body id="body">
<main>
<div id="nope">
<img id="nopeimg" src="assets/sprites/flowerPurchase.svg" alt="Flower Icon">
<h1 id="nopetext">This game can only be played on desktop. Sorry.</h1>
</div>
<div id="titleBar">
<h1 id="title">The Garden</h1>
<h3 id="cash">$50</h3>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.7.0/p5.js"></script>
<script src="https://cdn.jsdelivr.net/gh/zturtledog/fez-ui/i-am-ui-new.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/1.7.0/addons/p5.sound.js"></script>
<script src="assets/js/sketch.js"></script>
<div id="game"></div>
<p id="copyright">©️2023 Squigglesdev. Made with ❤️ and p5.js.</p>
</main>
</body>
</html>