Introduction to HTML:
What is HTML ?
HTML is a language for describing web pages.- HTML stands for Hyper Text Markup Language
- HTML is not a programming language, it is a markup language
- A markup language is a set of markup tags
- HTML uses markup tags to describe web pages
HTML Tags:
HTML makrup tags are usually called HTML tags- HTML tags are keywords surrounded by angle brackets like <html>
- HTML tags normally come in pairs like <b> and </b>
- The first tags in pair is the start tag
- Start and end tags are also called opening tags and closing tags.
HTML Documents- Web Pages
- HTML documents describe web pages
- HTML documents contain HTML tags and plain text
- HTML documents are also called web pages
lets do this:-
<html>
<body>
<h1>My first heading</h1>
<p>my first paragraph</p>
</body>
</html>
Exaple Explation: just check it
- THe text between <html> and </html> described the web pages.
- The text between <body> and </body> will explain visiblality of web page
- the text between </h1> and </h1> tag will tell the heading of page contents.
- The text between <p> and </p> will tell about paragraph.
Comments