Survey Form - Build a Survey Form

Tell us what’s happening:

Hello my CSS does not seem to work in my preview can anyone please assist me in fixing this problem

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>Fix UBISOFT Survey </title>
    <link rel="styles" href="style.css" />
  </head>
  <body>
    <h1 id="title">Fix UBISOFT Survey what</h1>
  <p>Please fill out this form to try and bring Ubi back to its former glory</p>
  <form id="survey-form">
    <fieldset>
      <label>Enter your First name here: <input id="name" type="text" required></label>
      </fieldset>
    </form>
  </body>
</html>
/* file: styles.css */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
  font-family: Tahoma;
  font-size: 16px;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0

Challenge Information:

Survey Form - Build a Survey Form

Hi there. Your link element’s rel attribute and href attribute values aren’t correct.
Your css file name is styles.css and rel attribute need a value stylesheet

1 Like