Tell us what’s happening:
Hello, first of all, you guys are amazing! thankyou
I just finished my Survey and it’s completed. I started coding 1 week ago, and i noticed that i didn’t use things like sections, and div’s ( to be honest I still dont quite understand divs)
point of this post: just looking for feedback as I continue, I don’t want to make unhealthy habbits now…
if you don’t mind pointing out : 1. easier, or cleanier ways to do things. or 2. things i am doing that could become problematic down the road. 3. any feedback.
thanks! Preformatted text
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en"></html>
<meta name="viewport" content="width=device width, initial-scale=1.0">
<head>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1 id="title"="What Do You Want To Learn About Coding"</h1></head>
<p id="description">Learn More About Coding Survey</p></header><hr></hr>
<fieldset>
<form id="survey-form">
<ul><label id="name-label"><strong>Name</strong>
<input id="name" type="text" placeholder="first and last" required ></label></ul></label id="name-label">
<label id="email-label"><strong>Email</strong><input id="email" type="email" required placeholder="email"></label>
<label id="number-label">Age<input id="number" type="number" min="13" max="120" placeholder="age"></label>
<hr> <fieldset> <label> Select skill level</label>
<select id="dropdown" name="experience level">
<option value="" >Select skill level</option>
<option value="1"> Beginner</option>
<option value="2"> Intermediate</option>
<option value="3">Advanced</option> <select></fieldset></hr>
<fieldset>
<h2><label id="coding"> What kind of coding languages are you interested in learning?
<ul><label for="Javascript"><strong>Javascript</strong></label>
<input id="Javascipt" type="checkbox" name="Javascript" value="Javascript">
<label for="Python"><strong>Python</strong></label>
<input id="Python" type="checkbox" name="Python" value="Python">
<label for="Ruby"><strong>Ruby</strong></label>
<input id="Ruby" type="checkbox" name="Ruby" value="Ruby">
<label for="SQL"><strong>SQL</strong></label>
<input id="SQL"type="checkbox" name="SQL" value="SQL">
</ul><label for="Perl"><strong>Perl</strong></label>
<input id="perl" type="checkbox" name="perl" value="perl"
< ul> <label for="c++"><strong>C++</strong></label>
<input id="c++" type="checkbox" name="C++" VALUE="C++">
<label for="Swift"><strong>Swift</strong></label>
<input id="swift" type="checkbox" name="swift" value="swift">
<label for="rust"><strong>Rust</strong></label>
<input id"rust" type="checkbox" name="rust" value="rust">
<ul><label for="HTML"><strong>HTML</strong></label>
<input id"HTML" type="checkbox" name="HTML" value="html">
<label for="php"><strong>PHP</strong></label>
<input id="PHP" type="checkbox" name="PHP" value="PHP">
<label for="scala"><strong>Scala</strong></label>
<input id="Scala" type="checkbox" name="scala" value="scala">
<label for="TypeScript"><strong>TypeScript</strong></label>
<input id="typescript" type="checkbox" name="typescript" value="typescript"></ul></h2></hr><hr></hr>
</fieldset>
<fieldset>
<label for="camp">Have you used freecodecamp.org before?</label>
<p><input id="yes" type="radio" name="yes-no" value="yes" checked> yes</input>
<input for="no" type="radio" name="yes-no" value="no"> no</input> <p></fieldset>
<label for="describe"> If yes, describe what your experience was like below:</<label><p><textarea placeholder="text here"></textarea></p></p>
<hr></hr>
<button type="submit" id="submit"><strong>Submit</strong></button>
</form></body>
<h3> We appreciate your feedback </h3>
</body>
/* file: styles.css */
header {
text-align: center;
font-family: cursive;
font-size: 20px;
padding: 20px;
;
}
html{background-image:url(https://images.unsplash.com/photo-1692639969478-a0dad77774c3?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHx0b3BpYy1mZWVkfDIzM3xibzhqUUtUYUUwWXx8ZW58MHx8fHx8&auto=format&fit=crop&w=500&q=60);
background-size:contain;
background-position:center;
color:#e6e6ff
}
input, select,textarea { background: #000033; border: none;
color: #e6e6ff;
font-size: 16px; }
body {text-align:center;}
button {box-shadow: 0 0 40px #e6e6ff;
background: transparent;
color:#e6e6ff;
font-size: 25px
}
option {color:#e6e6ff;}
fieldset{border-color: #000033;
border:none;}
hr { margin: center;
padding: 2px;
width: 550px;
height:4px;
background-color:#e6e6ff;
}
select{font-size:16px}
h2 {font-size: 20px;}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36
Challenge: Survey Form - Build a Survey Form
Link to the challenge:

