scrimba
Learn JavaScript
Build a Mobile App
Setting up app skeleton
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

Setting up app skeleton
AboutCommentsNotes
Setting up app skeleton
Expand for more info
index.html
run
preview
console
<!doctype html>
<html>
<head>
<title>Add to Cart</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<input type="text" id="input-field" placeholder="Bread">
<button id="add-button">Add to cart</button>
<script src="index.js"></script>
</body>
</html>
Console
/index.html
-3:47