HTML or Hyper Text Mark-up Language is one of the languages of the Internet. Below is the basic framework of a webpage written in HTML. Each “section” is has a beginning and an ending point. The beginnings are closed in the tags <> and the endings are closed in with . As you can see below, they also follow a specific order.
The ‘html’ tag begins and ends the entire page. You could say that this is the house in which all the code lives. The ‘head’ is where information such as the title, description of your site, keywords, any custom java-scripts, would be located. Those areas will be developed in other articles.
The ‘body’ comes next and is similar to the main body of a letter you might write to a friend. This is where the meat of the webpage will be located.
Paragraphs will be noted as p inside the <> tag, and will contain sections of text.
Images will be noted as ‘img srcthenthewebsitename.com’ inside the <> tags and will contain hyperlinks to the image you are inserting.
html inside <> to open the html page
head inside <> to open the header
head inside to close the header
p inside <>This is the section where the paragraph would go.
p inside
html inside to close the html page
Those are some easy HTML codes to remember and get you started. Keep in mind, always close all section with the < /> code, if not, it can put your whole webpage out of line.