-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapps.html
More file actions
55 lines (50 loc) · 2.68 KB
/
Copy pathapps.html
File metadata and controls
55 lines (50 loc) · 2.68 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Weird's apps</title>
<link rel="stylesheet" href="stylish.css">
</head>
<style>
body {
background-image: url("Frogger-uploaded.gif")
}
</style>
<body>
<div class="topnav" style="align-tracks: bottom;">
<a href="index.html">Home</a>
<a href = "resume.html">Resume</a>
<a class="active" href = "#apps">Apps</a>
<a href = "hobbies.html">Hobbies</a>
</div>
<div id="appdiv">
<h2 style="font-size:40px">My apps</h2>
<p>Coding is a favorite activity of mine.</p>
<table border=1>
<tr>
<th>Programs</th>
<th>Descriptions</th>
<th>Live Code links</th>
<th>File downloads</th>
</tr>
<tr>
<th>Frogger</th>
<th>Cool Frogger game I made in python. (Background GIF)</th>
<th><a href="https://github.com/WeirdCodingGoat/pygame-frogger-project">https://github.com/WeirdCodingGoat/pygame-frogger-project</a></th>
<th><a href="weirdcodinggoat.github.io/frogger.zip" download>Download not frogger here.</a></th>
</tr>
<tr>
<th>The Everything Game</th>
<th>My first finnished python project that I'm proud of. I made this when I started learning python.</th>
<th><a href="https://trinket.io/python/303799caf1">https://trinket.io/python/303799caf1</a><iframe src="https://trinket.io/embed/python/303799caf1?toggleCode=true&start=result" width="100%" height="300" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe></th>
<th><a href="weirdcodinggoat.github.io/The-Everything-Game" download>Download The Everything Game.</a></th>
</tr>
<tr>
<th>Turtle Invaders</th>
<th>A Space Invaders knock off that I made for a school project. It was very reliving once I completed it.</th>
<th><a href="https://trinket.io/library/trinkets/468b214cf5">https://trinket.io/library/trinkets/468b214cf5</a><iframe src="https://trinket.io/embed/python/468b214cf5?toggleCode=true&runOption=run&start=result" width="100%" height="300" frameborder="0" marginwidth="0" marginheight="0" allowfullscreen></iframe></th>
<th><a href="weirdcodinggoat.github.io/Turtle-Invaders">Download Turtle Invaders here.</a></th>
</tr>
</div>
</table>
</body>
</html>