I’m working on survey form and I’m stuck among other things in step two.
This is my code and apparently it’s not good:
Thank you for taking the time to help us improve the platform
Can anyone assist?
thanks,
I’m working on survey form and I’m stuck among other things in step two.
This is my code and apparently it’s not good:
Thank you for taking the time to help us improve the platform
Can anyone assist?
thanks,
Thank you for taking the time to help us improve the platform
It doesn’t allow me to send the code
Can you post a link to the challenge or step you are on?
You should be able to reply to me and post your code here inside a code block (use the icon that looks like </>
to create a code block around your scripts)
</> <p id="description">Thank you for taking the time to help us improve the platform.</p>
</>
this is the p element in step two of the survey and when I run the code it says it’s not good.
one line of code is not enough to be able to help you.
This line looks okay to me but there may be something else causing the error.
Please post all the code or share it on codepen
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Survey Form</title>
<link rel="stylesheet" href="styles.css"
</head>
<body>
<h1 id="title">Survey Form</h1
<p id="description">Thank you for taking the time to help us improve the platform.</p>
<form id="survey-form">
<input id="name" type="text" placeholder"name">
<input id="email" type="email" placeholder="email">
<input id="number" type="number" placeholder="number">
<select id="dropdown">
<option></option>
<option></option>
</select>
<input name="account-type" type="radio">
<input name="account-type" type="radio">
<input name="account-type" type="radio">
<input value="" type="checkbox">
<input value="1" type="checkbox">
<input value="2" type="checkbox">
<input value="3" type="checkbox">
<input value="4" type="checkbox">
<input value="5" type="checkbox">
<input value="6" type="checkbox">
<input value="7" type="checkbox">
<input value="8" type="checkbox">
<input value="9" type="checkbox">
<input value="10" type="checkbox">
</form>
</body>
</html>
I have been working on the code even though I was showing mistake on
, I thought I might figure out what is going on, but I wasn’t able to …
I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>
) to add backticks around text.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').
you are missing the > at the end of the <link
line
and also the > in the closing tag of the h1
you have many other mistakes as well.
You will need to work line by line and make sure you are writing correct syntax…