Not sure where to start?
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
/review
Karma
scrimba
<html> <head> <link rel="stylesheet" href="index.css"> </head> <body> <div class="container"> <label for="input">How's your energy today?</label> <input id="input" type="number" min="1" max="10" value="5"> <meter id="energy" min="0" max="10" low="3" high="7" optimum="10" value="10"></meter> </div> <script src="index.pack.js"></script> </body></html>