Safa1
1
Tell us what’s happening:
Your code so far
<h1<HeIIo world</h
Your browser information:
User Agent is: Mozilla/5.0 (Linux; Android 5.1; Lenovo TB3-710I) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.73 Safari/537.36.
Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/say-hello-to-html-elements/
Safa1
2
I want to challenge of this topic
There are a lot of things you need to fix.
this is an opening h1 tag: <h1>
this is a closing h1 tag: </h1>
Text goes in between the Opening and Closing tags.
what you’ve coded throws a big error and is the reason you didn’t pass the challenge.
is this part of your code a correct opening tag?
did you finish closing your h1 tag?
also, you wrote the wrong text. It’s supposed to be “Hello World” not “HeIIo world”
Solution
<h1>Hello World</h1>
1 Like