https://www.codecademy.com/ru/courses/web-beginner-en-TlhFi/1/6?curriculum_id=50579fb998b470000202dc8b#
Oops, try again. Did you remember to make your h1 font-family Verdana?
the url is the same for everyone, it would load my own code. Can you post your html and css code?
<head>
<link type="text/css" rel="stylesheet" href="stylesheet.css" />
<title>Result</title>
</head>
<body>
<h1>Change me to Verdana.</h1>
<h3>Change me to Courier.</h3>
<p>Make me purple!</p>
</body>
CSS
h1 {
font-family:verdana;
}
h3 {
font-family:courier;
}
p {
color:purple;
}
/*hi*/
Capitalize the V in Verdana and I think you got it.
same goes for Courier, that should also have uppercase first letter
1 Like
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.