Responsive Web Design Projects - Build a Survey Form

i’m having trouble cuz i just started learning html and css

  **Your code so far**
/* file: index.html */
<!DOCTYPE html>
</html>
<head>
<h1> survey form </h1>
</head>
<p>This is a survey form</p>

/* file: styles.css */
body {
background-image: url(https://cdn.freecodecamp.org/curriculum/css-cafe/beans.jpg);
font-family: sans-serif;
padding: 20px;
}

h1 {
font-size: 40px;
margin-top: 0;
margin-bottom: 15px;
}

h2 {
font-size: 30px;
}

.established {
font-style: italic;
}

h1, h2, p {
text-align: center;
}

.menu {
width: 80%;
background-color: burlywood;
margin-left: auto;
margin-right: auto;
padding: 20px;
max-width: 500px;
}

img {
display: block;
margin-left: auto;
margin-right: auto;
}
  **Your browser information:**

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

Challenge: Responsive Web Design Projects - Build a Survey Form

Link to the challenge:

try to look at

inside the head element should be title element also the link to CSS file
h1 element as title of the page / website (not title element) should be inside body element

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.