Survey Form - Build a Survey Form

obv not done but having problem with the preview, its all blank, nothing is showing up??
am I missing something? or is it suppose to not show your work…to make it harder? :sweat_smile:

Your code so far

<!-- file: index.html -->
<!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">
  <link rel="stylesheet" href="styles.css">
  <title>Pokemon Survey<title>
</head>
<body>
  <h1 id="title">Pokemon Violet/Scarlet Survey</h1>
  <p id="description">What do you think about the new pokemon game?</p>
  <form>
    <label id="name-label"><input id="name" type="text">Enter Name</label>
    <label id="email-label"><input id="email" type="email">Enter Email</label>
    <label><input>
</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/107.0.0.0 Safari/537.36

Challenge: Survey Form - Build a Survey Form

Link to the challenge:

I had that happen to me before. I would just refresh the page after saving your code. It should come back after that. If not go back to the curriculum and reload it.

It helps to write correct html syntax…
This line needs a > at the end of it.

And above you are missing one label closing tag and one form closing tag.

1 Like

Thanks! added the missing pieces the problem was that i didnt had a closing title tag :laughing: :sweat_smile:

1 Like

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