-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
17 lines (17 loc) · 961 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<html>
<head>
<script id="TheScript" src="/Script.js" defer></script>
<script id="TheGameScript" src="GameScript.js" defer></script>
<title id="PageTitle">Game Prototype</title>
<link rel="stylesheet" href="/styles.css" id="stylelink">
<meta charset="utf-8">
<meta name="keywords" content="HTML, CSS, JavaScript, Canvas, Welcome, Division, Game">
</head>
<body id="HTMLBody">
<div> <h1> Game </h1> <nav> <button onclick="document.location='/index.html'"> To Main Page </button> <button onclick="document.location='/settings.html'"> To Settings </button> <button onclick="linkbtn('/playground.html')"> To Playground </button> </nav> </div>
<h1> Welcome! </h1>
<p> Below is a little game that I'm working on, but for now it will simply be a display. </p>
<canvas id="canvas" height="755" width="1505" onclick="place(event,water)"> Your browser doesn't support the <canvas> tag! </canvas>
</body>
</html>