Lesson 12 Check yourself before you wreck yoruself

Lesson 12
I need help with lesson 12
I closed the link but it still says did you remember to close the link

https://www.codecademy.com/courses/web-beginner-en-TlhFi/1/6?curriculum_id=50579fb998b470000202dc8b#

<!DOCTYPE html>
<html>
	<head>
		<!--Add your link tag here!-->
	<link type="text/css"; rel="stylesheet"; href="stylesheet.css"> 
	<title>Result</title>	
		<title>Result</title>
	</head>
	<body>
		<h1>Change me to Verdana.</h1>
		<h3>Change me to Courier.</h3>
		<p>Make me purple!</p>
		</link>
	</body>
</html>

this exercise requires xml syntax that you close <link> with a slash:

href="stylesheet.css" /> 

also, attributes (type, rel, href) should be separated by spaces only, no semi-colons

3 Likes

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