HTML Design Tags Part - II
In last Blog we discuss about some starting Tags let's Continued......
<html>
<head>
<title> Web tips top </title>
</head>
<body>
<p>Web tips top is an Web designing tutorial required to web designing. Here we use so many languages from which our website look best.</p>
<p>Web tips top is an Web designing tutorial required to web designing. <br>Here we use so many languages from which our website look best.</p>
<hr width="100%">
<!...... In this tag everything we write treat as a comment ......!>
</body>
</html>
- <p> : <p> defines a paragraph. After use <p> tag Browsers automatically take margin and and padding automatically.
- <br> : <br> Stands for break row. It is use for a single line break. One more important thing is that <br> is empty tag which has no need to close.
- <hr> : <hr> defines Horizontal Row required to print line in a horizontal manner. It is also an empty tag which is also no required to close.
- <!---- !> :- This is an important tag to put comment in HTML files.
<html>
<head>
<title> Web tips top </title>
</head>
<body>
<p>Web tips top is an Web designing tutorial required to web designing. Here we use so many languages from which our website look best.</p>
<p>Web tips top is an Web designing tutorial required to web designing. <br>Here we use so many languages from which our website look best.</p>
<hr width="100%">
<!...... In this tag everything we write treat as a comment ......!>
</body>
</html>
Comments
Post a Comment