scrimba
The Weekly Web Dev Challenge
The Weekly Web Dev Challenge: Energy Meter ☕️
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

The Weekly Web Dev Challenge: Energy Meter ☕️
AboutCommentsNotes
The Weekly Web Dev Challenge: Energy Meter ☕️
Expand for more info
index.html
run
preview
console
<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>
Console
/index.html
-1:25