HTML Introduction Tutorial:1
8:23 AM
HTML Introduction,HTML
HTML Introduction
Tutorial:1
What is HTML?
- HTML is the pleasant/standard markup language for creating web pages.
- HTML stands for Hyper Text Markup Language
- Explains the structure of web pages using HTML markup
- HTML elements are represented by tags
- Browsers obtain not display HTML tags, but use them to adroitness content of the page
What are HTML tags?
- HTML tags are used to mark HTML elements
- HTML tags are surrounded by two letters <and>
- The surrounding special elements are called angle bracket"<,>"
- HTML tags generally come in pairs like <b> and </ b>
- The first tag is the start tag in a pair, the second tag is the end tag
- Text element between start and end tag is content
- HTML tags are not case-sensitive, <b> means the same as <B> not capital or small letter issue
Example:-
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>my first Heading</h1>
<p>my first paragraph</p>
</body>
</html>
Save :- file name.htm or .html
output:-