Survey Form - Build a Survey Form

Tell us what’s happening:
Describe your issue in detail here.
how can i put them one down of the other and in css it doesnt let me write a second property
Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang=en>
<head>
  <link rel="stylesheet" href="style.css"
  <meta charset="UTF-8">
  <title>My Survey Form</title> 
</head>
<body>
  <h1 id="title">My First Forum</h1>
  <p id="description">this the first time i write html and css kinda alone</p>
  <form id="survey-form">
  <label>Your name:<input id="name" required></label>
  <label>Your email:<input id="email" type="email" required></label>
  <label>Your number:<input =</label>
</form>
</body>
</html>
/* file: styles.css */
body {
  margin: 0
  
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

Welcome to our community!

  • the ‘lang’ attribute has the value without double quotes.
  • <link rel="stylesheet" href="style.css" the code line is open. Add the closing angle tag.
  • the css file is named differently. Read the instruction again.
  • <label>Your number:<input =</label> the input element is not properly closed.
  • the ‘body’ selector in css file is missing the semi-colon after the value.