Please how can i code hello world

Tell us what’s happening:
Describe your issue in detail here.

Your code so far


<h1>Hello</h1>
<h1>Hello</h1>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 7.0; TECNO F3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Mobile Safari/537.36

Challenge: Say Hello to HTML Elements

Hello>

**Link to the challenge:** https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/say-hello-to-html-elements

Hi!, try to understand what they ask you: “change your h1 element’s text to say Hello World”.

An <h1> element is the tag used most often to make a Website title, and large letters.

The tutorial asks you to add the words Hello World between the tags
<h1> </h1>

It gives you the tag:
<h1>Hello</h1>


You simply edit the tag, with you own text like:

<h1>Hello cats</h1>

<h1>Hello Sunshine</h1>

<h1>Hello world</h1>


THE OUTPUT WILL BE:

Hello cats

Hello Sunshine

Hello world

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