-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (41 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<title>AW Website</title>
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="stylesheet.css">
</head>
<body>
<div>
<h1 class="welcome">Welcome!</h1>
<p class="message">This site is a work in progress.</p>
</div>
<div>
<p>My name is Alexander Micheal Wardman.<br>
I am nehiywak from Saulteaux First Nation.<br>
I work as a Network Analyst for Living Sky School Division.</p>
<p>Some of my hobbies include:</p>
<ul>
<li>Gaming</li>
<li>Making and listening to Music</li>
<li>Learning new things</li>
<li>Reading</li>
<li>Exercise</li>
<li>Movies</li>
<li>Spending time with my family</li>
<li>Playing Chess</li>
</ul>
</div>
<h1 class="MyHeading">Chess Puzzle</h1>
<p>Can you see checkmate?</p>
<div class="container">
<img id="imageDisplay" src="img/begin.webp" alt="Cycling Image">
<div class="buttons">
<button id="cycleButton" onclick="cycleImage()">Next</button>
<button id="cycleButton" onclick="prevImage()">Previous</button>
<button onclick="resetImage()">Reset</button>
</div>
</div>
<script src="chess.js"></script>
</body>
</html>