In: Computer Science
Kindly Match the Web page authoring term in the left-column with the appropriate definition in the right column.
<!DOCTYPE> <html> lang <body> <ol> <title> <h1> style <meta> <ul> |
A container tag that creates a numbered list. |
A container tag that denotes text as a heading element. |
|
A container tag that encloses the main portion of the document; text in this section will appear in the browser. |
|
A global attribute that identifies the base language of the HTML document or individual element. |
|
An attribute capable of aligning text. |
|
A document structure component that nests all of the HTML document's code except for the !DOCTYPE declaration. |
|
container tag that encloses the text that will appear at the top of the browser window, and as the page name in Bookmarks and Favorites. |
|
An empty tag that describes the contents of a Web page, such as subject matter or author. |
|
A container tag that creates a bulleted list. |
|
An empty tag that declares document or code type within an HTML, XHTML, XML or SGML document; identifies the version and markup language used. |
|
Below table shows the match
term | definition |
<!DOCTYPE> | An empty tag that declares document or code type within an HTML, XHTML, XML or SGML document; identifies the version and markup language used. |
<html> | A document structure component that nests all of the HTML document's code except for the !DOCTYPE declaration. |
lang | A global attribute that identifies the base language of the HTML document or individual element. |
<body> | A container tag that encloses the main portion of the document; text in this section will appear in the browser. |
<ol> | A container tag that creates a numbered list. |
<title> | container tag that encloses the text that will appear at the top of the browser |
<h1> | container tag that encloses the text that will appear at the top of the browser window, and as the page name in Bookmarks and Favorites. |
style | An attribute capable of aligning text. |
<meta> | An empty tag that describes the contents of a Web page, such as subject matter or author. |
<ul> | A container tag that creates a bulleted list. |