0% found this document useful (0 votes)
9 views

Hyper Text Markup Language - HTML Questions and Answers.: Q. What Is HTML?

HTML is a computer language used to make web pages. The latest version is HTML5. To program in HTML5, you need a text editor like Notepad++ and a modern web browser. Tags in HTML are text inside angular brackets like <html> and </html>. Opening tags don't include a "/" while closing tags do. Some tags like <meta> don't require closing.

Uploaded by

Haris Khan
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views

Hyper Text Markup Language - HTML Questions and Answers.: Q. What Is HTML?

HTML is a computer language used to make web pages. The latest version is HTML5. To program in HTML5, you need a text editor like Notepad++ and a modern web browser. Tags in HTML are text inside angular brackets like <html> and </html>. Opening tags don't include a "/" while closing tags do. Some tags like <meta> don't require closing.

Uploaded by

Haris Khan
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Hyper Text Markup Language - HTML

Questions and Answers.


Q. What is HTML?

A. HTML is a computer language, which is used to make web pages. Its full form is “Hyper Text Markup
Language”.

Q. What is the latest version of HTML?

A. HTML has many versions but the latest version is HTML 5.

Q. What are the requirements for HTML 5 programming?

A. You will need:

 A text editor (example: Notepad, Notepad ++, Dream weaver and Microsoft WebMatrix etc.)
 A latest web browser. (Which support HTML 5)

Q. Is there any free text editor which I can use?

A. Yes, you can download Notepad ++ It is a free text editor but if you want other text editor such as
Adobe Dreamweaver then it is not free. Adobe may give you 30 days trail but after that you have to buy.

Q. What are the Tags in HTML?

A. Tags in HTML is a text inside angular brackets. For example:

When I want to add “HTML” tag than the tag is <html> similarly if I want tag of “head” the tag is <head>
but there is a rule for adding tags in HTML. The rule is that whenever we add a tag like <html> this tag is
called opening tag and this tag need to be closed also. To close it we will add closing tag </html> so the
difference between opening and closing tag is that opening tag do not include “/” sign but closing tag
includes “/”. So the complete tag of “HTML” is <html> </html>.

Note:

There are many tags which do not need to be closed. Such as:

 Meta Tags
 Horizontal Line Tag
 Line Break Tag
 Document type declaration Tag

You might also like