scrimba
Helen Chong's JavaScriptmas 2023 Solutions
Helen Chong's JavaScriptmas 2023 Day 22 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 22 solution
AboutCommentsNotes
Helen Chong's JavaScriptmas 2023 Day 22 solution
Expand for more info
index.html
run
preview
console
<!doctype html>
<html>
<head>
<title>Gift App</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<div class="container">
<img src="icon.png">
<h1>Gift App</h1>
<div class="input-fields">
<input type="text" id="input-field" placeholder="Frode">
<button id="add-button">→</button>
</div>
<ul id="people-list">
</ul>
</div>
<script src="index.js"></script>
</body>
</html>
Console
/index.html
LIVE