1. HTML
HTML Stands for Hyper Text Markup Language.
- <HTML> tag is the root element of an html page.
- It is not a case sensitive language.
- Html elements are the building blocks of html pages.
- It describe about the structure of web pages.
- By using html we can create Both static and dynamic web pages.
- It contains headings,paragraphs,buttons,labels and so on.
2. BASICS
- The HTML document itself begins with <html> and ends with </html>
- In html we have 2 types of tags.
- Paired tag EX:<p>content</p>
- Singleton Tag EX:<br>
- The visible part of the HTML document is between <body> and </body>
Basic tags:
<title>:Title tag used to give title which is displayed in the browser
<h1> - <h6>:These are heading tags
<p>:This is paragraph tag.
Basic Program:
<html>
<head>
<title>Basic Html program</title>
</head>
<body>
<h1>This is heading</h1
. <p>This is paragraph</p>
</body>
</html>
3. Editor
Editor is nothing but a program which is used to create and edit text files.
- Here i am using Notepad++ For creating and editing web pages.
- It is a free source code editor which we can download from google.