Make line Horizontal |
Make Lines Horizontal
A line can be inserted in a web document. is commonly used as a separator between sections or paragraphs.
<hr> tag will be inserted in a web document:
Examples of writing the tag <hr>:
<html>
<head><title> writing tag hr </title>
</head>
<body>
welcome to my website
<hr>
</body>
</html>
Make Comments
In an information document there are some text in the document that serves as a note or comment on the document itself. Note the comments in the document will not be displayed in the browser.
Tags comments can be used to hide some web documents. It could be because there is no certainty of the contents of the document to be published, especially from the legal aspect.
Tags comments can be used to hide some web documents. It could be because there is no certainty of the contents of the document to be published, especially from the legal aspect.
Examples of writing tags comments:
<! -- This is a comment tag -->
<html>
<head> <title> tag makes comments </ title>
</ head>
<body>
<! - This comment will not be visible in your web browser ->
</ body>
</ html>