scrimba
Helen Chong's JavaScriptmas 2023 Solutions
Helen Chong's JavaScriptmas 2023 Day 13 solution
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

Helen Chong's JavaScriptmas 2023 Day 13 solution
AboutCommentsNotes
Helen Chong's JavaScriptmas 2023 Day 13 solution
Expand for more info
index.html
run
preview
console
<html>
<head><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="index.css">
</head>
<body>
<h1>Christmas Dinner Picker</h1>
<p class="result" id="result">Your ideal Christmas dinner is <span id="food">...</span></p>
<form>
<label for="name">How many guests are coming?</label>
<input type="number" id="guests" name="guests">
<div class="veggie">
<input type="checkbox" id="vegetarian-input" name="vegetarian" checked>
<label for="name">Vegetarian?</label>
</div>
<button id="btn" type="submit">Calculate</button>
</form>
<script src="index.pack.js"></script>
</body>
</html>
Console
/index.html?guests=&vegetarian=on
LIVE