Tell us what’s happening:
Describe your issue in detail here.
Your code so far
<!-- file: index.html -->
<html >
<head>
<title>
survey-form
<title/>
<body>
<h1 id = "title">Survey For Determining The Reason For Increased Unemployment In Kenya <h1\>
<p id = " description"> rise of unemployment margin
<p/>
<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/118.0.0.0 Safari/537.36
Please tell us what the problem is in your own words. Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!
You don’t have much HTML here, but I’m assuming you are asking for help with the first few tests that are failing. I think you need to take a look at your closing tags on your elements. For example:
<h1\>
Not only is the slash on the wrong side, but it’s also the wrong type of slash. It should be a forward slash, not a back slash.
Another example:
<p/>
It’s the right type of slash but on the wrong side.
There are more closing tags that need to be fixed as well before you will start passing these tests. Go through your HTML and fix them all.