Minecraft Github.io
I’m excited to share that is now officially hosted and playable/accessible via GitHub Pages!
<script> // ---- Seed Generator ---- function generateSeed() // Minecraft seeds range from -2^63 to 2^63-1, we use safe JS integer range let min = -2147483648; let max = 2147483647; let seed = Math.floor(Math.random() * (max - min + 1)) + min; document.getElementById("seedResult").innerText = `🌱 Seed: $seed\n(Java/Bedrock compatible - use /seed in game)`; return seed; minecraft github.io
// ---- Crafting Guide logic ---- const recipes = planks: "🪵 1 Log → 4 Wooden Planks", sticks: "🪵 2 Planks (vertically) → 4 Sticks", torch: "🔥 1 Coal/Charcoal + 1 Stick → 4 Torches", crafting_table: "📦 4 Planks (2x2 grid) → 1 Crafting Table" ; function showRecipe() document.getElementById("showRecipeBtn").addEventListener("click", showRecipe); showRecipe(); // default preview I’m excited to share that is now officially
<div class="container"> <!-- Info / Intro --> <div class="tool-section" style="background: #2a2a1c;"> <p>⚡ Welcome, crafter! This page brings you essential tools for your Minecraft journey — from seed finders to crafting calculators. All free, open-source, and running right here on GitHub Pages.</p> </div> All free, open-source, and running right here on
<!-- Feature cards --> <div class="grid"> <div class="card"> <h3>🌍 Seed Generator</h3> <p>Generate random Minecraft seeds for Java & Bedrock. Find the perfect world for your next adventure.</p> <button class="btn" id="genSeedBtn">🎲 Generate New Seed</button> <div class="result" id="seedResult">Click to generate</div> </div>