Creating a button

Report a typo

Create a button inside the given form. When the button is clicked, the form must submit the data entered by the user. The value attribute must have the text "submit".

Write HTML and CSS code
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Create a button</title>
</head>
<body>
<form>
</form>
</body>
</html>


Completed 1 of 2
Create a button using the input tag.
The code is valid
___

Create a free account to access the full topic