Files
munebase.dev/root/resources.html

99 lines
5.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Munebase Resources</title>
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<header>
<h1>Useful Resources</h1>
<nav>
<a href="/index.html">Home</a>
<a href="/projects.html">Projects</a>
<a href="/resources.html">Resources</a>
<a href="/match.html">Example FRC Match</a>
</nav>
</header>
<main>
<article>
<section>
<h2>Minecraft Modding</h2>
<ol>
<li><a href="https://fabricmc.net/wiki/tutorial:setup" target="_blank"
rel="noopener noreferrer">Fabric
Modding
Wiki</a>
</li>
<li><a href="https://docs.minecraftforge.net/en/latest/" target="_blank"
rel="noopener noreferrer">Forge
Documentation</a>
</li>
<li><a href="https://www.curseforge.com/minecraft/mc-mods" target="_blank"
rel="noopener noreferrer">CurseForge
Mods</a>
</li>
</ol>
</section>
<section>
<h2>Java Programming</h2>
<ol>
<li><a href="https://www.w3schools.com/java/" target="_blank"
rel="noopener noreferrer">W3Schools Java
Tutorial</a></li>
<li><a href="https://www.geeksforgeeks.org/java/" target="_blank"
rel="noopener noreferrer">GeeksforGeeks
Java</a></li>
<li><a href="https://docs.oracle.com/javase/tutorial/" target="_blank"
rel="noopener noreferrer">Java
Tutorials
(Oracle)</a></li>
</ol>
</section>
<section>
<h2>Rust Programming</h2>
<ol>
<li><a href="https://doc.rust-lang.org/book/" target="_blank"
rel="noopener noreferrer">The Rust
Programming
Language
(Book)</a></li>
<li><a href="https://rust-lang.github.io/rust-by-example/" target="_blank"
rel="noopener noreferrer">Rust by
Example</a>
</li>
<li><a href="https://users.rust-lang.org/" target="_blank"
rel="noopener noreferrer">Rust Users
Forum</a></li>
</ol>
</section>
<section>
<h2>Python Programming</h2>
<ol>
<li><a href="https://docs.python.org/3/tutorial/" target="_blank"
rel="noopener noreferrer">Python
Official
Tutorial</a>
</li>
<li><a href="https://realpython.com/" target="_blank"
rel="noopener noreferrer">Real Python</a></li>
<li><a href="https://www.learnpython.org/" target="_blank"
rel="noopener noreferrer">LearnPython.org</a>
</li>
</ol>
</section>
</article>
</main>
<footer id="site-footer">
<a href="/index.html">Back to the homepage</a>
<a href="https://git.munebase.dev/Munelit/munebase.dev">Source for this site can be found here.</a>
</footer>
</body>
</html>