Friday, October 25, 2013

What is HTML

HTML is a language for describing web pages.

  1.     HTML stands for Hyper Text Markup Language.
  2.     HTML is a markup language, not a programming language.
  3.     A markup language is a set of markup tags for markup content.
  4.     HTML tags describe document content
  5.     HTML documents contain HTML tags and plain text
  6.     Files saving extension is .html
  7.     User doesn't see the HTML tags and browser markup the web page using HTML tags
 
HTML Document sample source is below.
 
<!DOCTYPE html>

<html>

<body>

 

<h1>stackMyCode web title</h1>

 

<p>This is the paragraph.</p>

 
</body>

</html>

0 comments:

Post a Comment