Hello and welcome HTML basics! I know there are lots of these out there within a quick Google Search but I shall do some here!
------------------
HTML, Hyper Text Makeup Language is what the internet is made up of! HTML is everywhere on the internet, this forum, any website, youtube, google everything of the internet is of HTML.
HTML is made up of two things, content, and the markup:
- Content is the text or information that is going to be presented on screen.
- Markup is the controls to the way text and information is shown.
------------------
A basic webpage or HTML document is made up of three main areas:
- HTML Birth
- Head
- Body
EVERY HTML code has a open and close, these are seen as <CODE> & </CODE> the first one is the open, while the once with the slash is the close.
The HTML "birth" (my own way of saying it) is what starts and ends a HTML document ALWAYS. This is done with:
- Code: Select all
<html> & </html>
These start the document and also contain other information like HTML version etc (But there isn't a reason to go into that now)
The next part is the head, like it sounds this is the top part of the HTMl document and normaly has nothing but a few bits and pieces that the user can see.
- Code: Select all
<head> & </head>
The head allows you to put in codes that will do actions and show information to your computer & browser without you knowing (its safe most of the time) on this forum the head has a lot of information about how the style of the forum will be set out, but it also has things like meta codes and the little title.
The last part is the body. Everything in here is almost always likely to be seen by the viewer,
- Code: Select all
<body> & </body>
Between this code, you will show all the information, pictures, videos everything! And is the big part.
------------------