example
HTML tag could be :
<openingTag> </closingTag>
<openingandclosingTag />
here some HTML tag with its description
<HTML> </HTML> = it is an element to define HTML document
example of use
<HTML>
.
..
....
.....
</HTML>
<HEAD> </HEAD> = it is an element to define document title, styles, links, scripts, and other meta information.
example of use
<HTML>
<HEAD>
..links
....metadata
..... title
</HEAD>
</HTML>
.
<BODY> </BODY> = it is an element that contains all the contents of an HTML document, such as text, hyperlinks, images, tables, lists etc.
example of use
<HTML>
<HEAD>
..links
....metadata
..... title
</HEAD>
<BODY>
..texts
...images
.....list
......hyperlinks
</BODY>
</HTML>
0 comments:
Post a Comment