Not sure where to start?
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
/review
Karma
scrimba
<html> <head> </head> <body> <h1>forms!</h1> <form action="#" method="post"> <label> <input type="text" required placeholder="Enter your first name"> </label> <br> <input aria-label="last name" id="lname" type="text" required placeholder="Enter your last name"> <br> <input id="email" type="email" required placeholder="email"> <button type="submit">Send away!</button> </form> </body> </html>