Autocomplete feature

Report a typo

Provide an autocomplete functionality whenever a user is trying to fill in the form. The HTML form is given below.

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>HTML Forms</title>
</head>
<body>
<form action="/action_page.php">
<label for="first_name">First name:</label>
<input type="text" id="first_name" name="second_name" /><br />
<label for="second_name">Second name:</label>
<input type="text" id="second_name" name="second_name" /><br />
<label for="email">Email:</label>
<input type="text" id="email" name="email" /><br />
<input type="submit" />
</form>
</body>
</html>

Completed 1 of 2
Add autocomplete functionality in the form.
The code is valid
___

Create a free account to access the full topic