scrimba
Frontend Career Path
Making websites interactive
Chrome Extension
Make the input button work with onclick
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

Make the input button work with onclick
AboutCommentsNotes
Make the input button work with onclick
Expand for more info
index.css
run
preview
console
body {
margin: 0;
padding: 10px;
font-family: Arial, Helvetica, sans-serif;
}

input {
width: 100%;
padding: 10px;
box-sizing: border-box;
border: 1px solid #5f9341;
margin-bottom: 4px;
}

button {
background: #5f9341;
color: white;
padding: 10px 20px;
border: none;
font-weight: bold;
}
Console
/index.html
-1:17