scrimba
Frontend Career Path
Making websites interactive
Chrome Extension
Style the 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
Style the button and input tag
Expand for more info
index.css
run
preview
console
body {
margin: 0;
padding: 10px;
font-family: Arial, Helvetica, sans-serif;
}

/*

Style our app according to the provided design!

green color -> #5f9341

*/


input {

}

button {

}
Console
/index.html
-7:16