Survey Form - Build a Survey Form

Tell us what’s happening:

when click run the test, it tells “you should add” multiple elements including elements i added & doesn’t building in the tab. need help?

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta charset="utf-8" />
    <title>survey-form.freecodecamp.rocks<title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
        <h1 id="title">Survey Form</h1>
        <p id="description">Thank you for helping us</p>
        <form id="survey-form">
           <input id="name" type="text" placeholder="Enter your name" />
           <input id="email" type="email" placeholder="Enter your email" /> 
        </form>
  </body>
</html>
/* file: styles.css */

Your browser information:

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

Challenge Information:

Survey Form - Build a Survey Form

1 Like

Hi there, welcome to fcc community.

You should use a HTML validator tool to check for issues in your HTML code.
Like this one, for example:

https://www.freeformatter.com/html-validator.html

Hint: The issue is in your title element in the head

2 Likes