-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (37 loc) · 1.33 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
<!--FizzBuzz Project-->
<!--Created by Catalina Escalona, Winter Semester 2023-24-->
<!--Course: "Web Coding: Intro to Web Development and Game Prototyping"-->
<!--University of Applied Arts Vienna-->
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv='X-UA-Compatible' content='IE=edge'>
<title>fizzbuzz</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<link rel='stylesheet' type='text/css' media='screen' href='main.css'>
</head>
<body>
<div id="top"><h1>fizzbuzz thaumatrope</h1></div>
<!--invisible fizzbuzz images-->
<img id="fizz-img" src="./img/fizz-img.jpg" alt="bird thaumatrope image">
<img id="buzz-img" src="./img/buzz-img.jpg" alt="cage thaumatrope image">
<img id="fizzbuzz-img" src="./img/fizzbuzz-img.jpg" alt="bird in cage thaumatrope image">
<!--visible number-->
<p id="number">0</p>
<!--buttons-->
<br>
<button id="count">count</button>
<button id="start">start</button>
<button id="stop">stop</button>
<button id="reset">reset</button>
<br>
<br>
<!-- commented out the debug button: -->
<!-- <button id="debug">debug</button> -->
<!--link to jquery library-->
<script src="jquery-3.7.1.min.js"></script>
<!--link to javascript file-->
<script src="main.js"></script>
</body>
</html>