scrimba
The Weekly Web Dev Challenge
The Weekly Web Dev Challenge - Tip Calculator ๐Ÿงพ
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 - Tip Calculator ๐Ÿงพ
AboutCommentsNotes
The Weekly Web Dev Challenge - Tip Calculator ๐Ÿงพ
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="calculator_container">
<h1>Tip Calculator</h1>
<div class="form_control">
<label for="bill">Bill (in $)</label>
<input type="number" id="bill_value" placeholder="100"/>
</div>

<div class="form_control">
<label for="tip">Tip %</label>
<input type="number" id="tip_value" placeholder="10" />
</div>

<footer>
<div class="result">
<span>Total:</span> <strong id="total">[$110]</strong>
</div>
</footer>
</div>

<script src="script.js"></script>
</body>
</html>
Console
/index.html
-1:26