Step one:
Open Notepad and write <!DOCTYPE html> in tags that look like this <>. Then Type <body>.
Note:
To close any tag you write </inside> the <> and before you wirte the rest of the tag for example
<p> is to open a paragraph and </p> would close the paragraph.
The <body> Means the begining of the body of the Script
Step Two:
Write <html> and then write <h1>"whatever you want" inside of these <>.
This makes the Title of your paragraph
Note:
Note that <> is the Tags That we talk about so any tag uses <>.
When You are writing the Script you want to organize it in ways that will make it easy for you to read your own Script.
You can do this by using tabs and spaces and even paragraph like formats. Like having different lines between certain things.
Step Three:
Write <P> [YOUR PARAGRAGH] then to close write </p>.
Note:
To close a tag you write the same tag but with a / in the tags for example </p> after the open Tag.
In the [YOUR PARAGRPH] part means thats were you type your paragraph inbetween the the open and closing tags.
Step Four:
Once you have finished typing your paragraph and write </p>.This closes the paragraph.
Then Type </body>.
Note:
That <p> means that. This is the begining of a paragragh.
</body> means this is the ending of the body of your script/paragraph.
<body> means the beginning of the body.
Step Five:
Now type </html>.
Note:
This closes the HTML script Altogether so the computer renders that there is no more.
The open tag for example is just this <>. But, with the proper character that marks up the tags. The Closing tag is <> with / the middle and then your proper character.
For example opening <p> and the closing tag </p>
That was the opening and closing tags for a paragraph. There are other tags used to Edit text like
<b> that makes the print bold. To make a title with big letters is by making the tag <h1>.
The <!DOCTYPE html> at the top means that the computer may identify that it is a html file.