Learn HTML Forms by Building a Registration Form - STEP 37

In this step, we are required to update the body element selector in CSS with a font-family and font-size property.

I believe my solution to be correct, however, the lesson keeps stating that I need to change the font-family to Tahoma.

It will not allow me to mark the lesson as complete / move on to next lesson.

Is it me or a bug? :frowning:

body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
	color: #f5f6f7;
  font-size: 16px;
  font-family: Tahoma;
}

label {
	display: block;
	margin: 0.5rem 0;
}

SCREENSHOT OF ISSUE:

REGISTRATION FORM STEP 37

Don’t know why it isn’t working for you? Your CSS passes for me. Is your browser up to date? Perhaps try a different browser? Do you have any extensions installed in your browser that might be messing with the CSS? Disable your extensions one at a time until you find the one causing the issue.

I’m just guessing here. You’ll have to try all of these things until you find the reason.

1 Like

quick update - I just continued to click submit / run the css code and then it finally said I passed.
Maybe a bug? I got it though :smiley:

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