Submit button
Lesson 3 of 7 in Coddy's Login Form - HTML/CSS Project course.
To add a submit button in a form we use the "submit" input type, with value attribute of the text we want.
<input type="submit" value="Login">Challenge
EasyAdd a submit button to the form!
Try it yourself
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Write HTML code here -->
</body>
</html>