<head>
<title>
Headings & Paragraphs
</title>
</head>
<body>
</body>
Which exercise are you at? What does the error message say?
Where does the <h>
, </h>
go?
We don’t have <h></h>
, we do have <h1></h1>
till <h6></h6>
, and it goes between the body tags (<body></body>
)
Got it thanks:smiley:
How do I create a link?
isn’t that in the instructions? You need the element:
<a></a>
and then add a href attribute:
<a href="url">click me</a>
If you need more help, please create a new topic
Got it:slight_smile: