HTML
HTML stands for Hyper Text Markup Language
It is the standard markup language for creating Web pages
It describes the structure of a Web page
It consists of a series of elements
It's elements tell the browser how to display the content
HTML Page Structure
>!DOCTYPE html<
>html<
>head<
>title<Page Title>/title<
>/head<
>body<
>h1<My First Heading>/h1<
>p<My first paragraph.>/p<
>/body<
>/html<
- >!DOCTYPE html< declaration defines that this document is an HTML5 document
- >html< element is the root element of an HTML page
- >head< element contains meta information about the HTML page
- >title< element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab)
- >body< element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc.
- >h1< element defines a large heading
- >p< element defines a paragraph
Web Browsers
The purpose of a web browser (Chrome, Edge, Firefox, Safari) is to read HTML documents and display them correctly.
A browser does not display the HTML tags, but uses them to determine how to display the document
Question
Question 1 : HTML stands for?
1. Hyper Text Markup Language
2. High Text Markup Language
3. Hyper Tabular Markup Language
4. None of these
Answer
Correct Anaswer : 1
Explanation:
Hyper Text Markup Language
1604
Question 2 : which of the following tag is used to mark a begining of paragraph ?
1. <TD>
2. <br>
3. <P>
4. <TR>
Answer
Correct Anaswer : 3
Explanation:
<P>
1605
Question 3 : From which tag descriptive list starts ?
1. <LL>
2. <DD>
3. <DL>
4. <DS>
Answer
Correct Anaswer : 3
Explanation:
<DL>
1606
Question 4 : Correct HTML tag for the largest heading is
1. <head>
2. <h>
3. <heading>
4. <h1>
Answer
Correct Anaswer : 4
Explanation:
<h1>
1607
Question 5 : Markup tags tell the web browser
1. How to organise the page
2. How to display the page
3. How to display message box on page
4. None of these
Answer
Correct Anaswer : 2
Explanation:
How to display the page
1609