What is HTML?
- HTML (Hyper Text Markup Languange) is a language for describing web pages
- HTML is not a programming language, it is a markup language
- A markup language is a set of markup tags
- HTML uses markup tags to describe web pages
HTML Tags:
- HTML markup tags are usually called HTML tags
- HTML tags are keywords surrounded by angle brackets like <html>
- HTML tags normally come in pairs like <b> and </b> or <i> and </i> .
- The first tag in a pair is the start tag or opening tag, the second tag is the end tag or closing tag
Bold: <b>........</b>
ex: <b> Example </b>
result: Example
italic: <i>........</i>
ex: <i> Example </i>
result: Example
We can replace the codes, Bold+italic: <b><i>........</i></b>
ex: <b><i>Example</i></b>
result: Example
Tag Case is not sensitive:
<b>........</b> = <B>........</B>
<i>........</i> = <I>........</I>
If like Bold or italic have </b> or </i>, any tag that have no pairs like <hr>, <br> or <input>.
Blogger template is in three parts HTML Tags. Namely html, head, and body.
<html>
<head>
</head>
<body>
</body>
</html>
The text between <html> and </html> describes the web page (about HTML Doc)
The text between <body> and </body> is the visible page content (ex:image,link,text,etc..)
The text between <head> and </head> is to put like meta data (ex:keyword,etc..)
Hopefully this is useful knowledge for you. Good Luck!
0 comments:
Post a Comment