Basic HTML Doctype

Tell us what’s happening:
I don’t know where the < h1 >goes?
(Can you just tell me where one of them goes?)

Your code so far

```html

```

Your browser information:

User Agent is: Mozilla/5.0 (X11; CrOS x86_64 12871.76.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.103 Safari/537.36.

Challenge: Declare the Doctype of an HTML Document

Link to the challenge:

CODE
1. <!DOCTYPE html>
2.<html>
3.<h1>solution</h1>
4.</html>

EXPLAINATION
1.The type of document is mentioned in this line according to HTML5 semantics.
2.Opening html tag.
3.h1 tag in the html tag.
4.closing html tag.

1 Like

thx that helped a lot have a good one! :wave:

1 Like