| Topic H |
| HTML |
| HTML markup consists of several key components, including elements (and their attributes), character-based data types, and character references and entity references. Another important component is the document type declaration.html language is understood by normal visitors. |
| Html is the hypertext mark up language is the series of short codes which is saved in HTML file. These codes are read by browser and converted into readable text for viewers. Html is used in the creation of WebPages. Html is designed with tags and attributes. |
| Html and hyperlink |
| On the web page of the web site are inserted in the form of hyperlinks. These hyperlinks enable the reader to move on to the next page from where the link has come. The are depicted in the form of codes on the Html page. |
Html tags |
| Here I have mentioned various Html tags and their position on the Html page. |
<html>
This is the first tag of html page which informs the web browser about the starting of the documents. |
<h1>
This tag defines the heading of the document. are from <h1> to <h6> where <h1> defines the important and main heading and <h6> defines the smallest heading. |
<body>
Body tag defines the body of the document. |
<h1 align=”center”>
This tag specifies the additional information about alignment |
<body bgcolor=”blue”>
Above mentioned tag is used to mention the additional information about background color. The tag indicates that the background here is blue. |
<table>
The tag is meant for the information about the table. |
<table border=”1”>
The tag renders the information about the border around the table. |
<p> and </p>
<p> indicates the beginning of the paragraph and </p> indicates end of the same paragraph. |
<br>
This tag defines the break of line where you do not want to start the new paragraph. |
<!- -This is a comment - ->
This comment tag is used to insert comment in the source code. |
| |
| |