-
Notifications
You must be signed in to change notification settings - Fork 0
/
games.html
79 lines (59 loc) · 2.47 KB
/
games.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Games | typewriter1.github.io</title>
<link href="https://fonts.googleapis.com/css?family=Exo+2" rel="stylesheet">
<link rel="stylesheet" href="css/contentstyles.css">
<link rel="stylesheet" href="css/slidestyles.css">
<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
<link rel="shortcut icon" type="image/png" href="https://typewriter1.github.io/images/favicon.png"/>
<link rel="icon" type="image/png" href="images/favicon.png"/>
<link rel="icon" type="image/png" href="https://typewriter1.github.io/images/favicon.png"/>
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="games.html">Games</a></li>
<li><a href="projects.html">Projects</a></li>
</ul>
</nav>
<h1>Games</h1>
<div class="content">
<h2>Flying Game</h2>
<p>
<a href="https://github.com/typewriter1/FlyingGame">Flying Game</a>. A flight-simulator style game where you locate enemy targets and report back on them.
<!-- Slideshow container -->
<div class="slideshow-container">
<a class="prev" onclick="plusSlides(-1)">❮</a>
<!-- Full-width images with number and caption text -->
<div class="mySlides fade">
<div class="numbertext">1 / 2</div>
<img src="https://raw.githubusercontent.com/typewriter1/FlyingGame/master/screenshot1.png" height=300 width=400 title="Screenshot" alt="Screenshot">
<div class="text">Screenshots</div>
</div>
<div class="mySlides fade">
<div class="numbertext">2 / 2</div>
<img src="https://raw.githubusercontent.com/typewriter1/FlyingGame/master/screenshot2.png" height=300 width=400 title="Second Screenshot" alt="Second Screenshot">
<div class="text">Screenshots</div>
</div>
<!-- Next and previous buttons -->
<a class="next" onclick="plusSlides(1)">❯</a>
</div>
<!-- The dots/circles -->
<div style="text-align:center">
<span class="dot" onclick="currentSlide(1)"></span>
<span class="dot" onclick="currentSlide(2)"></span>
</div>
</p>
<h2>Goalie Gloves</h2>
<p>
<a href="https://github.com/typewriter1/goalie-gloves">Goalie Gloves</a>. A game where you save penalties to earn points, telling you what percentage of shots you save.
<br>
<img src="https://raw.githubusercontent.com/typewriter1/goalie-gloves/master/saved screenshot.png" height=303 width=608 title="Goalie Gloves Screenshot" alt="Goalie Gloves Screenshot">
</p>
</div>
<script src="js/slideshow.js"></script>
</body>
</html>