-
Notifications
You must be signed in to change notification settings - Fork 1
/
resources.html
57 lines (51 loc) · 2.26 KB
/
resources.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
<!DOCTYPE html>
<html>
<head>
<title>CodeNMore - Resources</title>
<meta name = "author" content = "CodeNMore"/>
<meta name = "description" content = "I teach programming, electronics, and more!"/>
<link rel="stylesheet" type="text/css" href="style.css"/>
</head>
<body>
<header class="shadowed">
<img src="images/banner.png" />
<nav>
<a href="index.html">Home</a>
<a href="resources.html">Tutorial Resources</a>
<a href="mywork.html">My Work</a>
<a href="http://www.youtube.com/CodeNMore" target="_blank">YouTube</a>
<a href="http://www.twitter.com/CodeNMore" target="_blank">Twitter</a>
</nav>
</header>
<article class="main-content shadowed">
<h1>Let's Make a Godot Space Shooter</h1>
<div>
<ul>
<li>Get the texture files: <a href="resources/SpaceShooter_Assets.zip" target="_blank">here!</a></li>
<li>All source code is on GitHub per-episode: <a href="https://github.com/CodeNMore/Yet-Another-Space-Shooter/releases" target="_blank">here!</a></li>
</ul>
</div>
<h1>Godot Basics</h1>
<div>
<ul>
<li>Textures used in the series (all CC0 - free for you to use!): <a href="https://github.com/CodeNMore/codenmore.github.io/tree/master/resources/godot_basics_resources" target="_blank">here!</a></li>
</ul>
</div>
<h1>New Beginner Java Game Programming Code</h1>
<div>
<ul>
<li>All source code is on GitHub per-episode: <a href="https://github.com/CodeNMore/New-Beginner-Java-Game-Programming-Src" target="_blank">here!</a></li>
</ul>
</div>
<h1>Beginner Electronics Resources</h1>
<div>
<ul>
<li>Resistor Color Code Chart: <a href="resources/resistorcodes.html" target="_blank">here!</a></li>
</ul>
</div>
</article>
<footer class="shadowed">
Copyright © CodeNMore 2020
</footer>
</body>
</html>