Tell us what’s happening:
even if i am writing correct code still it is not passing
Your code so far
<!-- file: index.html -->
<!-- User Editable Region -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Choose Account Type</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<form>
<label for="account">
<input type="radio" id="account" name="account_type">
Personal or Business
</label>
</form>
</body>
</html>
<!-- User Editable Region -->
/* file: styles.css */
/* styles.css */
body {
font-family: Arial, sans-serif;
margin: 20px;
}
label {
font-size: 18px;
display: block;
margin: 10px 0;
}
input[type="radio"] {
margin-right: 10px;
}
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Safari/605.1.15
Challenge Information:
Learn HTML Forms by Building a Registration Form - Step 25