Sunday, 26 June 2016

STRUCTURE of HTML

HTML is a markup language for describing web documents (web pages).
  1. HTML stands for Hyper Text Markup Language
  2. A markup language is a set of markup tags
  3. HTML documents are described by HTML tags
  4. Each HTML tag describes different document content
STRUCTURE of HTML

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>

<h1>My First Heading</h1>
<p>My first paragraph.</p>

</body>
</html>

No comments:

Post a Comment