scrimba
Frontend Career Path
Making websites interactive
Chrome Extension
Add button and input tag
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

AboutCommentsNotes
Add button and input tag
Expand for more info
index.html
run
preview
console
<html>
<head>
<link rel="stylesheet" href="index.css">
</head>
<body>
<!-- Create an input element with type="text" and id="input-el" -->
<!-- Create a SAVE INPUT button with id="input-btn" -->
<script src="index.js"></script>
</body>
</html>
Console
/index.html
-1:33