1, HTML
2, CSS

1.3, How to write 'Hello World'

"Hello World" is a popular way to get started with coding. So, let's do it.

Let's open our previous file with notepad.
1, We will open notepad first. After opening it we will go to File on the top left corner.

2, Then click on 'open'

3, Then go to where it says 'Text Documents (*.txt)' and change it to all files.

4, And double click to open our previous file.

So, our code was like

<html>
    <head>
         <title>My First Coding File</title>
    </head>
</html>
We will add a 'body' tag on it just after the 'head' tag.
<html>
    <head>
        <title>My First Coding File</title>
    </head>
    <body>
    </body>
</html>
🪐 Now the use of this 'body' tag is to contain everything we see on our web page. Then let's add some more code.
<html>
    <head>
        <title>My First Coding File</title>
    </head>
    <body>
        <p>Hello World</p>
    </body>
</html>
🪐 Now we added a p tag.

🪐 <p> </p> tag is a paragraph tag. It is used to hold paragraphs.
<html>
    <head>
        <title>My First Coding File</title>
    </head>
    <body>
        <p>Hello World</p>
        <p>My name is Jane</p>
    </body>
</html>
We can add more <p> tags if we want.

Now let's run this. Yours should be similar to this image

And also, if you want to write on a new line in a p, you can use the <br> tag. This makes your code to have a new line. We don't open and close a br tag, because it's a closed tag already.
<p>Hey!<br>My name is Rooney
Try to put this in your code and run it. You would've a new line of paragraph. Like this image.