Computer Science, asked by paswansudha515, 2 months ago

E. Answer the following questions.
1. What are the HTML elements?
2. Name two HTML editors used for creating webpages.
3. What is the purpose of the HEAD tag?
4. What is the use of the BODY tag?
5. Why are the Heading tags useful?
6. What is the difference between the container and empty tags? Give an example of each.​

Answers

Answered by dhruv25517
1

E. 1. An HTML element is a type of HTML document component, one of several types of HTML nodes.

2. NetBeans HTML editor interface

Microsoft Visual Studio Code's HTML editing interface

3. The HTML <head> element contains machine-readable information (metadata) about the document, like its title, scripts, and style sheets

4. The <body> tag defines the document's body. The <body> element contains all the contents of an HTML document, such as headings, paragraphs, images, hyperlinks, tables, lists, etc. Note: There can only be one <body> element in an HTML document.

5. Heading tags indicate headings on a webpage by using code to tell a web browser how to display content. That's why and how they organize your content into a format that's easy to read. In addition to general structure and readability, heading tags help improve accessibility for people who can't easily read screens.

6. Container tag consists of opening tag+content+closing tag . While empty tag is tag without content or a closing tag. Container tags are used to enclose texts, images etc. ... Like you can insert a line-break or an image anywhere in your page but it should be inside some container tag.

Example, <HTML> is contained tags

<IMG> is empty tag

Hope it is helpful

Mark me as brainliest & follow me

Similar questions