ABOUT HTML
Today I study HTML.
HTML
HTML : Hyper Text Markup Language.
HTML language is using for describing web page.
HTML uses "markup" to annotate text, images, and other content for display in a Web browser. HTML markup includes special "elements" such as
<head>, <title>, <body>, <header>, <p>, <div><img>, and many others. Save the file as on HTML document using .html or .htm extension.
HTML Tags
- <HTML>   :- Start tag
 </HTML> :- Eng tag
- <HEAD>    :- Webpage Head
 </HEAD> :-Webpage end Head
- <TITLE>    :- Webpage Title
 </TITLE> :-Webpage end Title
- <BODY>    :-Webpage Body
 <BODY> :-Webpage end Body
-  <BR>  
 {Line Break}
- <P> 
 {Paragraph}
- <H1>
 {Heading}
- <FONT SIZE=1>
 {Font size}
- <B>
 {Bold}
- <I>
 {Italic}
- <U>
 {Under line}
- <SMALL>
 {This is smaller size than the default}
- <BIG>
 {This is larger size than the default}
- <SUP>
 {Superscript}
- <SUB>
 {Subscript}
- <P ALIGN=LEFT or RIGHR or CENTER>
 {Align}
- <HR>
 {Horizontal line}
- <IMG SRC="Imagepath">
 {Insert Image}
- <TABLE>
 {Table}
- <TR>
 {Table Row}
- <TH>
 {Table Heading}
- <TD>
 {Table Data}
 








 
Comments