scrimba
Note at 1:01
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

Note at 1:01
by
AboutCommentsNotes
Note at 1:01
by
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Dessert Decider 🍨</h1>
<button class="btn" id='btn'>See Delicious Desserts 😋</button>
<div class="btnContainer">
<button id="prevBtn" style="display:none">
<span class="material-icons">arrow_back_ios</span>
</button>
<div id="foodHolder" class="foodHolder"></div>
<button id="nextBtn" style="display:none">
<span class="material-icons">arrow_forward_ios</span>
</button>
</div>

<script src="index.pack.js"></script>
</body>
</html>
Console
/index.html
LIVE