• Register

What are HTML Tags?

asked Aug 16, 2012 by anonymous

2 Answers

0 votes
 
Best answer

HTML markup tags are known as HTML tags. These tags are actually a keyword surrounded by angle brackets. For Example:

<html>

<h1>  etc.


 

answered Aug 16, 2012 by anonymous
0 votes
HTML is an acronym for hypertext markup languages which is often used to develop static website.
Let us see an example of them
<html> // describes web pages
<body> // specifies the visibility of web pages
<h1>This is a heading portion</h1>
<p>This is a paragraph portion.</p>
</body>
</html>
answered Oct 17, 2012 by edwinmiller

Related questions

2 answers
asked Aug 16, 2012 by anonymous
3 answers
asked Aug 16, 2012 by anonymous
1 answer
asked Aug 16, 2012 by anonymous
1 answer
asked Aug 16, 2012 by anonymous
...