-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebsite_example2.html
More file actions
36 lines (33 loc) · 931 Bytes
/
website_example2.html
File metadata and controls
36 lines (33 loc) · 931 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
<!--
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>Gaming Company</title>
<link rel="stylesheet" href="styles/styles.css" />
</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>
<main>
<h2>Welcome to Drawdy Gaming Co.</h2>
<p>We are dedicated to providing high-quality games to meet your needs.</p>
</main>
<footer>
<p>© 2024 Drawdy Gaming Company. All rights reserved.</p>
</footer>
</body>
</html>