HTML Raps..
Images Of Example:
Code:
HTML cool stuff:
Let us first start with what is html?
H-Hyper
T-Text
M-Markup
L-Language
Syntax of HTML:
<html>
<body>
........
........
</body>
</html>
Note:The content which we want to display in website is written in body tag.
Basic Tags in HTML:
1.<body>...</body>:Body is the container of website.
2.Headings:
<h1>...</h1>
<h2>...</h2>
<h3>...</h3>
<h4>...</h4>
<h5>...</h5>
<h6>...</h6>
Note:<h1> is the largest heading and mostly used and <h6> is the smallest heading .
3.<title>...</title>:The name which we want to display in tab while displaying page then use title.
4.<head>...</head>:The content which we want to display on top of page then use this.
5.<center>...</center>:Aligning text to center.
6.<bgcolor>:Used to give background color.
Output:


Comments
Post a Comment