This forum is now read-only. Please use our new forums! Go to forums

banner
Close banner
0 points
Submitted by Kavya Jey
almost 9 years

12/21 not working.HELP ME!

It is saying this when I press save and submit code…

Oops, try again. expected body to have its font-family style equal to Helvetica but got ‘Times New Roman’

This is my code…

<!DOCTYPE html>
<head><style>body {
    text-align: center;
    background: black;
    color: white
    font-family: Helvetica;
}</style></head>
<body>
<!-- I'm a comment. You won't actually see me on the web page.
     You should write your header in the line below me! -->
<h1>Me!</h1>
<p>Hi!My name is Kavya.I love animals and art.</p>
<input type="email"placeholder="Email">
<input type="submit">
</body>

Answer 5579884a9376769d950000fe

1 vote

Permalink

you forget the semi-colon behind color: white

semi-colons are very important part of coding :)

your code has to look something like that:

body {
text-align: center;
background: black;
color: white;
font-family: Helvetica;
}
points
Submitted by Edeline White
almost 9 years

2 comments

marcosmrpoodle over 8 years

thanks .>

marcosmrpoodle over 8 years

s