| ¤ÍÁàÁé¹·ì áµè§hi5,Code Hi5,code,â¤é´,â¤é´ hi5,áµè§hi5,µ¡áµè§hi5,áµè§ hi 5,â¤é´ÊÕ,ÃÇÁâ¤é´áµè§hi5 â¤é´ µ¡áµè§ hi5,css code codeáµè§hi5 â¤é´hi5 áÅÐ â¤é´áµè§hi5 ÊÓËÃѺ áµè§hi5 µ¡áµè§ hi5 ´éÇ â¤é´ hi5 á¶Á hi5´ÒÃÒ á¨¡ hi5´ÒÃÒ css hi5,¾×é¹ËÅѧ hi5,»Õ¡hi5,â¤é´µ¡áµè§hi5,code »Õ¡,â¤é´»Õ¡ hi5,áµè§ä´ÍÒÃÕè,¢Í§áµè§ä´,â¤é´à¾Å§,â¤é´hi5,Ê͹·Óâ¿âµéªÍ»,â¤é´hi5,Code hi5,ÇÔ¸ÕàÅè¹ hi5 ÊÁѤÃhi5 ÇÔ¸Õ·Ó hi5 ãÊèà¾Å§ ãÊèÊäŵì ã¹ Hi5 ˹éÒà´ÕÂÇ,â¤é´ÊÕ,ÃÇÁâ¤é´áµè§hi5 â¤é´ µ¡áµè§ hi5,css code codeáµè§hi5 â¤é´hi5 áÅÐ â¤é´áµè§hi5 ÊÓËÃѺ áµè§hi5 µ¡áµè§ hi5 ´éÇ â¤é´ hi5 á¶Á hi5´ÒÃÒ á¨¡ hi5´ÒÃÒ css hi5,¾×é¹ËÅѧ hi5,»Õ¡hi5,â¤é´µ¡áµè§hi5,code »Õ¡,â¤é´»Õ¡,â¤é´hi5 Comment Glitter áµè§hi5, |
|
|
|
 |
| |
| HTML Source |
| |
|
|
|
 |
|
 |
| |
|
| HTML Introduction |
|
Document tags define the overall structure of an HTML document.
There are four tags every HTML document should have. These tags define the what type of document it is, and the major sections. These tags are <HTML>, <HEAD>, <TITLE>, and <BODY ...>. You may also wish to use the <!DOCTYPE ...> declaration under some circumstances.
|
| โครงสร้างขà¸à¸‡à¸ าษา HTML |
| |
|
| |
<HTML>
<HEAD>
<TITLE>My name title </TITLE>
<BODY>
.
This isi my first web page
. </BODY>
</HEAD>
</HTML> |
|
| Optional Attributes |
| Attribute |
Value |
Description |
| alink |
rgb(x,x,x)
#xxxxxx
colorname |
Specifies the color of the active links in the document. Deprecated. Use styles instead. |
| background |
file_name |
An image to use as the background. Deprecated. Use styles instead. |
| bgcolor |
rgb(x,x,x)
#xxxxxx
colorname |
The background color of the document. Deprecated. Use styles instead. |
| link |
rgb(x,x,x)
#xxxxxx
colorname |
Specifies the color of all the links in the document. Deprecated. Use styles instead. |
| text |
rgb(x,x,x)
#xxxxxx
colorname |
Specifies the color of the text in the document. Deprecated. Use styles instead. |
| vlink |
rgb(x,x,x)
#xxxxxx
colorname |
Specifies the color of the visited links in the document. Deprecated. Use styles instead. |
|
|
| |
| HTML Elements |
|
| |
The HTML element starts with a start tag: <b>
The content of the HTML element is: This text is bold
The HTML element ends with an end tag: </b>
The purpose of the <b> tag is to define an HTML element that should be displayed as bold.
This is also an HTML element: |
| |
<body> This is my first homepage. <b>This text is bold</b> </body> |
|
| |
This HTML element starts with the start tag <body>, and ends with the end tag </body>.
The purpose of the <body> tag is to define the HTML element that contains the body of the HTML document. |
| |
| |
| |
|
|
|
|
 |
|
 |
|
| |
|
| |
|
| |
|
|