FUNDAMENTALS OF COMPUTER

COMPUTER PROGRAMMING FUNDAMENTALS

WEB PAGE DESIGN AND PROGRAMMING LANGUAGES

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
Which is an example of a closing tag?
A
<body>
B
//body
C
*body
D
</body>
Explanation: 

Detailed explanation-1: -An opening tag begins a section of page content, and a closing tag ends it. For example, to markup a section of text as a paragraph, you would open the paragraph with an opening paragraph tag <p> and close it with a closing paragraph tag </p> (closing tags always proceed the element with a /).

Detailed explanation-2: -What two tags open and close the body of a Web page? The opening body tag is <BODY> and the closing body tag is </BODY>.

Detailed explanation-3: -The <a> tag defines a hyperlink, which is used to link from one page to another. The most important attribute of the <a> element is the href attribute, which indicates the link’s destination. By default, links will appear as follows in all browsers: An unvisited link is underlined and blue.

Detailed explanation-4: -The main content area of an HTML document. You must use this element and it should be used just once. It should start immediately after the closing head tag and end directly before the closing html tag.

There is 1 question to complete.