<!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 form with relevant attributes</title>
</head>
<body>
<form action="">
<label for="firstname">First name:</label>
<input
type="text"
name="firstname"
id="firstname"
value="Alexandria"
/>
<label for="secondname">Second name:</label>
<input
type="text"
name="secondname"
id="secondname"
/>
<label for="email">Email:</label>
<input type="email" name="email" id="email" />
<label for="password">Password:</label>
<input type="password" name="password" id="password" />
<button type="submit">submit</button>
</form>
</body>
</html>