-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfoSquare.html
More file actions
37 lines (35 loc) · 945 Bytes
/
infoSquare.html
File metadata and controls
37 lines (35 loc) · 945 Bytes
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
<!--
Author: Kylie Drawdy
Date: 11/13/2024
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Info Square</title>
<link rel="stylesheet" href="styles/styles.css" />
<!-- Added script element -->
<script src="js/infoSquare.js" defer></script>
</head>
<body>
<header>
<img src="images/BMO_image.jpg" alt="Image of BMO">
<h1>Drawdy Gaming Company</h1>
</header>
<nav>
<a href="website_example2.html">Home</a>
<a href="gamePlay.html">Play Game</a>
<a href="infoSquare.html">Info Square</a>
<a href="purchaseGames.html">Purchase Games</a>
<a href="gamesCart.html">Games Cart</a>
</nav>
<section>
<h1>info Square</h1>
<div id="box"></div>
<div class="button-container">
<input type="button" value="Add Word" id="addWord" />
</div>
</section>
</body>
</html>