Form Button Has Text
HTML
Easy
2 views
Problem Description
Create a submit button with clear text 'Create meetcode account'.
Output Format
Print the HTML code.
Constraints
Button text must be clear.
Official Solution
<!doctype html>
<html lang='en'>
<head>
<meta charset='utf-8'>\
<meta name='viewport' content='width=device-width, initial-scale=1'>
<title>meetcode signup</title>
</head>
<body>
<form action='#' method='post'>
<button type='submit'>Create meetcode account</button>
</form>
</body>
</html>
Solutions (0)
No solutions submitted yet. Be the first!
No comments yet. Start the discussion!