I’ve completed the first project, build a survey form but I’m getting really frustrated cause my CSS is not linking or applying I don’t know. Ive spent the past day trying to figure out why it isn’t working but cant if someone has some tips please let me know I’m so lost.
I couldnt find the edit button I even had someone help me look for it, so I added the raw code below, thanks for showing me how to do that btw
<!DOCTYPE html>
<html lang="en">
<head>
<title>Customer Satisfaction Survey</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1 id="title">Customer Satisfaction Survey</h1>
<p id="description">We value our customers and we are always wanting provide excellent service.Please help us improve our services by filling out the questions below and enter a chance to win 100$ giftcard to our store! <p/>
</header>
<form id="survey-form"> <label id="name-label"> <input id="name" type="text" required placeholder="Name">Name <label id="email-label"> <input type="email" id="email" required placeholder="Email">Email <label id="number-label"> <input min="10" type="number" max="11" placeholder="Enter Your Phone Number" id="number">Number
<fieldset>Please rate our service from 1-5
<select id="dropdown" name="dropdown">
<option value="">Select One</option>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option></select>
</fieldset>
<fieldset>Would you recommend us?
<label><input type="radio" name="referral" value="referral">Yes</label>
<label><input type="radio" name="referral" value="referral">No</label></fieldset>
<fieldset>What would you like us to improve?(select all that apply)
<label><input type="checkbox" value="service" name="service" class="inline">Customer Service</label>
<label><input type="checkbox" value="Quality" name="Quality" class="inline">Product Quality</label>
<label><input type="checkbox" value="Package" name="Package" class="inline">Product Packaging</label>
<label><input type="checkbox" value="service" name="service" class="inline">Faster Response Time/Staff</label>
</fieldset>
<fieldset>
<label>Please leave any additional comments below <textarea row="3"cols="30" name="textarea"></textarea></label>
<button id="submit" type="submit">Submit</button>
</form>
I actually just figured it out! Thanks for showing me how to add the raw code and for trying to help!!
