Tell us what’s happening:
Describe your issue in detail here.
I can’t get the style.css to show my changes on the preview. I have tried to compare my code to the source code on the page I am trying to replicate.
**Your code so far**
/* file: index.html */
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css" />
</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>
<form id="survey-form">
<div class="form-group">
<label id="name-label" for="name" />First Name</label>
<input id="name"
type="text"
placeholder="enter name"
required
/>
</div>
<div class="form-group">
<label id="email-label" for="email" />Enter Email</label>
<input id="email"
type="email"
placeholder="enter email"
required
/>
</div>
<div class="form-group">
<label id="number-label" for="number" />Verify Age</label>
<input id="number"
type="number"
min="18"
max="120"
placeholder="Age"
required
/>
</div>
</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/104.0.5112.81 Safari/537.36
Challenge: Survey Form - Build a Survey Form
Link to the challenge: