-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.98 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
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="favicon.ico" />
<title>Mr. Ochoa</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/game.css">
<!-- Animatelo -->
<script src="https://cdn.rawgit.com/web-animations/web-animations-js/2.2.2/web-animations.min.js"></script>
<script src="https://cdn.rawgit.com/gibbok/animatelo/1.0.3/dist/animatelo.min.js"></script>
</head>
<body>
<header>
<h1>Mr. Ochoa's<br>Simple JavaScript Examples</h1>
<br>
</header>
<main style="text-align: center;">
<article>
<h3>Hi! Check out these JavaScript examples.</h3>
<br>
<div>
<a href="pages/temp_page.html"><b>Temperature Conversion</b></a><br>
<br>
<a href="pages/cat_page.html"><b>Cat Breed Selector</b></a><br>
<br>
</div>
</article>
<br>
<section id="numberGuessingGameContainer">
<h2 style="color: lightseagreen;">Number Guessing Game</h2><br>
<div id="numberGuessingGame"></div><br>
<h3>View the code for this game <a href="pages/code_page.html">here</a>.</h3>
<h4>Animations by <a href="https://gibbok.github.io/animatelo/" target="_blank" rel="noopener noreferrer">Animatelo</a></h4>
<script src="js/game.js"></script>
</section>
<br>
</main>
<footer>
<h4>View my GitHub code repo <a href="https://github.com/felixthecat8a/example" target="_blank"><span style="color:lightseagreen">here</span></a>.</h4>
<h5><a href="http://github.com/felixthecat8a" target="_blank" rel="noopener noreferrer">
<span class="felix">felixthecat8a🐈</span>
</a></h5><br>
</footer>
</body>
</html>