Code to open programming hub: FAFHβBirchBayLake-CODERSππ¦ππ¦πΉ
π» Claim Coder Coupons
Enter your coder coupon:
ππ¦ππ¦πΉ FAFH Coding Hub
Welcome, coder! You’ve unlocked the secret coding area.
π° Bunny Example
π¦ Duck Example
π Chicken Example
π©πΎβπ» Coding Lessons
π©πΎβπ» Coding Lessons β HTML, CSS, JS!
π° Coding Lesson: Beginner Bunny
Welcome, Beginner Bunny! Today you’ll learn some very simple HTML.
π± Lesson 1: Making Text
<h1>Hello Bunny! π°</h1>
<p>Welcome to (Place)!</p>
Hello Bunny! π°
Welcome to (place)!
π₯ Lesson 2: Making a List
<h2>My Favorite Foods</h2>
<ul>
<li>Carrots</li>
<li>Lettuce</li>
<li>Parsley</li>
</ul>
Bunnies Favorite Foods List
- Carrots
- Lettuce
- Parsley
πΎ Lesson 3: Making a Button
<button>Feed Bunny</button>
π₯¬ Lesson 4: Making a Bunny Card
<h2>π° Daisy πΌ</h2>
<p>Age: 2</p>
<p>Favorite Food: Carrots</p>
π° Daisy πΌ
Age: 2
Favorite Food: Carrots
π¦ Coding Lesson: Duckling Developer
Welcome, Duckling Developer! Today you’ll learn a few more HTML skills.
π Lesson 1: Add a Picture
<img src="https://thefrugalchicken.com/wp-content/uploads/2023/04/Ducklings-min.jpg" alt="Cute Ducklings" width="200">
πͺΊ Lesson 2: Make a Link
<a href="https://maplechamp.ca">Visit Duck Pond</a>
π¦ Lesson 3: Create a Duck Profile
<h2>π¦ Fluffy</h2>
<p>Age: 1 month</p>
<p>Favorite Activity: Swimming</p>
π¦ Fluffy
Age: 1 month
Favorite Activity: Swimming
π Lesson 4: Add Color
<h1 style="color:gold;">Golden Duckling</h1>
Golden Duckling
ποΈ Lesson 5: Create a Pond Section
<div>
<h2>π Duck Pond</h2>
<p>The ducklings love to splash here!</p>
</div>
π Duck Pond
The ducklings love to splash here!
πΉ Coding Lesson: Hamster Hacker
Welcome, Hamster Hacker! Today you’ll learn your first bit of JavaScript.
π» Lesson 1: A Clickable Button & π₯ Lesson 2: Change Text
<button onclick="alert('Squeak!')">
Feed Hamster
</button>
<p id="food">No snack yet!</p>
<button onclick="document.getElementById('food').innerHTML='π₯ Hamster got a peanut!'">
Give Peanut
</button>
No snack yet!
π Lesson 3: Hamster Exercise Counter
<p id="laps">Laps: 0</p>
<button onclick="addLap()">
Run Wheel
</button>
<script>
let laps = 0;
function addLap() {
laps++;
document.getElementById("laps").innerHTML =
"Laps: " + laps;
}
</script>
Laps: 0
π Lesson 4: Hamster Home Card
<div>
<h2>πΉ Nibbles</h2>
<p>Favorite Food: Sunflower Seeds</p>
<p>Favorite Hobby: Wheel Running</p>
</div>
πΉ Nibbles
Favorite Food: Sunflower Seeds
Favorite Hobby: Wheel Running
π Coding Lesson: Chicken Coder
Welcome, Chicken Coder! Today you’ll learn how to make webpages react and update automatically.
π₯ Lesson 1: Count Eggs
<p id="eggs">Eggs: 0</p>
<button onclick="collectEgg()">
π₯ Collect Egg
</button>
<script>
let eggs = 0;
function collectEgg() {
eggs++;
document.getElementById("eggs").innerHTML =
"Eggs: " + eggs;
}
</script>
Eggs: 0
π£ Lesson 2: Hatch a Chick
<p id="chick">π₯ Egg</p>
<button onclick="hatch()">
Hatch
</button>
<script>
function hatch() {
document.getElementById("chick").innerHTML =
"π£ Chick";
}
</script>
π₯ Egg
π½ Lesson 3: Feed the Chickens
<p id="status">π Hungry</p>
<button onclick="feed()">
Feed Corn
</button>
<script>
function feed() {
document.getElementById("status").innerHTML =
"π Happy";
}
</script>
π Hungry
β° Lesson 4: Show the Current Time
<p id="time"></p>
<script>
document.getElementById("time").innerHTML =
new Date().toLocaleTimeString();
</script>
π¦ Coding Lesson: Parrot Programmer
Welcome, Parrot Programmer! Today you’ll learn how to make your webpage talk, repeat messages, and interact with users.
π£οΈ Lesson 1: Make a Parrot Speak
<p id="parrot">π¦ Hello!</p>
<button onclick="talk()">
Talk
</button>
<script>
function talk() {
document.getElementById("parrot").innerHTML =
"π¦ Squawk! Welcome!";
}
</script>
π¦ Hello!
π€ Lesson 2: Repeat What You Type
<input id="message">
<button onclick="repeatMessage()">
Repeat
</button>
<p id="output"></p>
<script>
function repeatMessage() {
let text =
document.getElementById("message").value;
document.getElementById("output").innerHTML =
"π¦ " + text;
}
</script>
π΄ Lesson 3: Change Perch
<p id="perch">π΄ Tree Perch</p>
<button onclick="moveParrot()">
Fly
</button>
<script>
function moveParrot() {
document.getElementById("perch").innerHTML =
"π Bird House";
}
</script>
π΄ Tree Perch
π¦ Lesson 4: Count Squawks
<p id="count">Squawks: 0</p>
<button onclick="squawk()">
Squawk
</button>
<script>
let squawks = 0;
function squawk() {
squawks++;
document.getElementById("count").innerHTML =
"Squawks: " + squawks;
}
</script>
Squawks: 0
π¨ Lesson 5: Colorful Parrot
<h1 style="color:green;">
π¦ Tropical Parrot
</h1>
π¦ Tropical Parrot
π Live Html, Css, & JS Playground
Preview:
π₯ Community Creations
π Coder of the Week
No winner yet
π₯ Bunny Coins
0
π¦ Duck Tokens
0
π Sign In
Not signed in