1.HTML Introduction
What is the Meaning of HTML?
HTML is one kind of markup language for describing web documents (web pages).- The HTML stands for Hyper Text Markup Language
- A markup language is a set of different markup tags
- HTML documents are described by different HTML tags
- Each single HTML tag describes different document content
HTML Example for you
Very Small HTML document
<!doctype html>
<html>
<body>
<h1>This is My First Heading</h1>
<p>This is My first paragraph.</p>
</body>
</html>
<html>
<body>
<h1>This is My First Heading</h1>
<p>This is My first paragraph.</p>
</body>
</html>
Try it »
Example Explained Below
- The DOCTYPE declaration defines the Document Type
- The text written in the example between <html> and </html> describes the web document
- The text between <body> and </body> as you can see describes the visible page content
- The text between <h1> and </h1> describes as a heading
- The text between <p> and </p> describes as paragraph
No comments:
Post a Comment