Basic For Study HTML

1. HTML

HTML Hypertext Markup Language. Is the first language for writing HTML. HTML Tag used for work.
Example :

<p>Hello Cambodia</p>

2.HTML FORM

HTML is divided into two major parts, tag Header tag Body and the two tag in the tag HTML.
Here is a common form of HTML:



1.<html>
2.<head><title>Name of Page</title></head>
3.<body>
4.// any text here
5.</body>
6.</html>

Note :
<html> tag, which we used to open at the beginning and at the end of our Page.
<body> tag is for us to write different code to display on our Page.

For example,

1.<html>
2.<head><title>Name of Page</title></head>
3.<body>
4.This is my first time with HTML.
5.</body>
6.</html>



3.Program for writing HTML

We have many programs that used to write HTML, such as Dreamweaver, Notepad, Notepad ++ or WordPad.