Survey Form - Build a Survey Form- When I run the test, they say my h1 element doesn't have an id wyth value 'title'. How come?

Tell us what’s happening:
Describe your issue in detail here.

   **Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html lang="en">
 <head>
   <meta charset="UTF-8"/>
   <meta name="viewport" content=width-device-width, initial scale=1.0"/>
   <title id="title">Survey Form</title>
   <link href="styles.css" rel="stylesheet"/>
 </head>
 <body>
   <h id="title" >SURVEY FORM</h>
   <p id="slogan">Help us Help change the world...</p>
   <p id="description"class="description">The Mphemba company has for over a decade held sacred the idea innovation. We believe and want to be-live in change as well.What better place to get inspiration than from people, the most diverse species known to exist. That's why we knock at your door, we want you to help us help the world. </p>
   <form id="survey-form">
     <fieldset><h2>Personal information</h2>
       <label id="name-label">Please enter your name and surname(as shown on your I.D/Passport): <input type="text" id="name"required placeholder="Name and Surname"/></label>
       <label id="email-label">Enter your e-mail address: <input type="email" id="email"required placeholder="email address"/></label>
       <label id="number-label">Cellphone number: <input id="number"type="number" placeholder="number" min="01" max="1000000000" pattern="^0[1-9]|[1-9]\d$"/></label>
       <label>Sex</label><select id="dropdown"><option value="1">Male</option>
       <option value="2">Female</option>
       <option value="3">Rather not say</option><select/></fieldset>
    <fieldset>
      <p></p>
<h3>In what way would you like to provide assistance to us?</h3>

<label>Monetary donation <input type="radio" value="1"
class="radio" name="radio"/></label>    
      <label>Donation of equipment <input type="radio" name="radio" value="2"
      class="radio"/></label>
<label>Sponsorship <input type="radio" value="3"
class="radio"name="radio"/>
     <label>Business partnership<input type="radio" 
     value="4"class="radio"
     name="radio"/></label>
<label>Technological advancements<input type="radio"
class="radio"
value="5"
name="radio"/></label>    
      </fieldset>
      <fieldset>
      <h4>Would you like to sign up to our newsletter?<label>YES</label><input type="checkbox" class="checkers"
      value="1"/>
      <label>NO</label><input type="checkbox" class="checkers"
      value="2"/><h4>
      <fieldset/>
<textarea class="uno" required placeholder="Share your innovative thoughts with us."></textarea>      <input id="submit" name="submit" value="SUBMIT" class="Submittance"
type="submit"/>
   </form>
   </body>
 </html>

/* file: styles.css */
.description{font-family:Courier New}
fieldset{margin:0 auto;
margin-top:3.5em;
margin-bottom:3.5em;
border:none;
}
label{display:block;margin-bottom:0.5rem}
.cellphone number{margin-left:20px}
.radio{display:in-block;
margin-bottom:0.5rem}
.checkers{display:block;
margin-bottom:1rem}
.Submitance,.uno{text-align:center;width:50%;
margin-bottom:1em;display:inline-block}
body{background-color:#a7e4f2;
color: #C0C0C0 }
title{color:#00008B}
   **Your browser information:**

User Agent is: Mozilla/5.0 (Linux; Android 11; SM-A127F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Mobile Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

Hello there.

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more information you give us, the more likely we are to be able to help.

I do not think that “h” is a valid html tag. I guess you meant h1?

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.