Menu
Coddy logo textTech

Submit button

Lesson 6 of 7 in Coddy's Login Form - HTML/CSS Project course.

Same as input, buttons have default border which is a good practice to overwrite it, or remove it,

#button {
	border: none;
}
challenge icon

Challenge

Easy

Style the form button with:

  • Different background color
  • Different padding
  • cursor: pointer;

Optional styling suggestions:

  • border
  • width
  • margin
  • color
  • border-radius

Try it yourself

<!DOCTYPE html>
<html>
<head>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <!-- Write HTML code here -->
</body>
</html>

All lessons in Login Form - HTML/CSS Project