Learn HTML Forms by Building a Registration Form - I cannot see my code displaying on the right side, plus test not working properly

Hi,

I have a problem with not being able to see my code displaying on the right hand side of the screen where it normally shows up. When I pop the preview window out it is blank.

Also, even though I fulfil the condition of the first test, it shows as not passed.

Can somebody help me please? I tried multiple browsers and the same happens.

Welcome to our community!

Try to follow this instruction:
“Note: Some browser extensions, such as ad-blockers and dark mode extensions can interfere with the tests. If you face issues, we recommend disabling extensions that modify the content or layout of pages, while taking the course.”

Copy/Paste your code and save it as a txt file, just in case…

Hi Dobar,

Thank you for messaging. I double checked and none of my browsers are using extensions as you mentioned.

Any other advice?

Thanks,
Horatiu

please post the actual code here so we can check it. Images are hard to read and to check.

1 Like
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Survey Form<title>
<link rel="stylesheet" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale= 1.0"/>
</head>
<body>
<div class="container">
  <header class= "header">
    <h1 id="title" class="text-center">freeCodeCamp Survey Form</h1>
    <p id="description" class="description text-center">Thank you for taking the time to help us improve the platform</p>
  </header>
</div>  
</body>
</html>

here is the reason your preview pane is blank.
The title closing tag is missing a slash.

Thank you so much! Really appreciate it guys! It works now!

1 Like

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