-
Notifications
You must be signed in to change notification settings - Fork 1
/
coolMath.html
93 lines (83 loc) · 3.63 KB
/
coolMath.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<link rel ="stylesheet" href="styles.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Basic Website</title>
</head>
<body>
<header>
<h1>Cool Math Games</h1>
</header>
<main>
<div class="image-container">
<div>
<img src="https://ellipsiseducation.com/wp-content/uploads/2023/04/Scratch-cat.png" alt= "wildfires" title= "wildfires" width="300" height="200" />
<h3 id="click1" class="image-subheading">Scratch Game</h3>
</div>
<div>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Python.svg/1200px-Python.svg.png" alt= "global warming" title= "global warming" width="300" height="200" />
<h3 class="image-subheading"><a id="poker-python" href="https://github.com/allenfrostline/Poker">Python Game</a></h3>
</div>
<div>
<span><img src="./planet.jpg.avif" alt= "International Games" title= "International Games" width="300" height="300" /></span>
<h3 class="image-subheading">Other</h3>
</div>
<div>
<span><img src="./other.jpg" alt= "more fun stuff" title= "more fun stuff" width="300" height="200" /></span>
<h3 class="image-subheading">Other2</h3>
</div>
</div>
<script>
document.getElementById("click1").onclick = function(event) {
// Compensate for IE<9's non-standard event model
if (event===undefined) event= window.event;
var target= 'target' in event? event.target : event.srcElement;
if (Math.random() < 0.5) {
window.location.href = "https://youtu.be/dQw4w9WgXcQ?si=R0ynL6uWqsRs6Had";
}
};
</script>
</main>
<footer>
© 2024 Cool HackGames
<div id="about-us">
<h3><a id="about-us-link" href="about-us.html">About Us</a></h3>
<!-- Replace "about-us.html" with the actual file you want to link to -->
</div>
</footer>
<!--
</div>
<table>
<th> <h2> Projects</h2> </th>
<tr>
<td class="row">
<img src="https://ellipsiseducation.com/wp-content/uploads/2023/04/Scratch-cat.png" alt= "wildfires" title= "wildfires" width="300" height="200" />
</td>
<td class="row">
<img src="./globalwarming.jpg" alt= "global warming" title= "global warming" width="300" height="200" />
</td>
<td class="column">
<img src="./planet.jpg.avif" alt= "International Games" title= "International Games" width="300" height="300" />
</td>
<td class="column">
<img src="./other.jpg" alt= "more fun stuff" title= "more fun stuff" width="300" height="200" />
</td>
</tr>
<tr>
<td>
<center><figcaption> <h3> <a href = "calfires.html" > California Wildfires </a> </h3> </figcaption></center>
</td>
<td>
<center><figcaption> <h3> <a href = "globalwarming.html" > Global Warming </a> </h3> </figcaption></center>
</td>
<td>
<center><figcaption> <h3> <a href = "https://www.youtube.com/shorts/00h0SN2NqCc" > International Games </a> </h3> </figcaption></center>
</td>
<td>
<center><figcaption> <h3> <a href = "other.html" > More Fun </a> </h3> </figcaption></center>
</td>
</tr>
</table>
-->