Docsity
Docsity

Prepare for your exams
Prepare for your exams

Study with the several resources on Docsity


Earn points to download
Earn points to download

Earn points by helping other students or get them with a premium plan


Guidelines and tips
Guidelines and tips

HTML Exam Questions With 100% Correct And Verified Answers 2024, Exams of Advanced Education

A comprehensive set of html exam questions with 100% correct and verified answers for the year 2024. It covers a wide range of topics related to html, including the definition of html, tags, formatting, lists, semantic html, inserting symbols, creating nested webpages, stylesheets, layout, marquees, text separation, empty elements, the span tag, the canvas element, svg, progress and meter tags, the figure and figcaption tags, and the details and summary tags. A valuable resource for students preparing for html exams, as it offers detailed explanations and examples to help them understand the concepts thoroughly.

Typology: Exams

2023/2024

Available from 08/03/2024

Qualityexam
Qualityexam 🇰🇪

3

(2)

2.1K documents

1 / 4

Toggle sidebar

Related documents


Partial preview of the text

Download HTML Exam Questions With 100% Correct And Verified Answers 2024 and more Exams Advanced Education in PDF only on Docsity! HTML Exam Questions With 100% Correct And Verified Answers 2024 What is HTML? - Correct Answer-HTML stands for Hypertext Markup Language, it is used to create and display pages on the Web What are Tags? - Correct Answer-HTML tags are used to create HTML documents and render their properties. Each HTML tags have different properties. What is formatting in HTML? - Correct Answer-It enables us to format text without using CSS. <b> <strong> <i> <mark> What are some common lists in HTML - Correct Answer-Ordered List <ol> Unordered List <ul> Definition List <dl>, <dt>, <dd> What is the difference between HTML elements and tags? - Correct Answer-HTML elements communicate to the browser to render text. When the elements are enclosed by brackets <>, they form HTML tags. What is semantic HTML? - Correct Answer-Semantic HTML, or "semantically-correct HTML", is HTML where the tags used to structure content are selected and applied appropriately to the meaning of the content. For example, <b></b> (for bold), and <i></i> (for italic) should never be used, because they're to do with formatting, not with the meaning or structure of the content. Instead, use the replacements <strong></strong> and <em></em> (meaning emphasis), which by default will turn text bold and italic (but don't have to do so in all browsers), while adding meaning to the structure of the content. How to insert a copyright symbol on a browser page? - Correct Answer-&copy How to create a nested webpage in HTML? - Correct Answer-The HTML iframe tag is used to display a nested webpage. In other words, it represents a webpage within a webpage. The HTML <iframe> tag defines an inline frame. <!DOCTYPE html> <html> <body> <h2>HTML Iframes example</h2> <p>Use the height and width attributes to specify the size of the iframe:</p> <iframe src="https://www.javatpoint.com/" height="300" width="400"></iframe> </body> </html> What is a style sheet? - Correct Answer-A file that describes how an HTML file should look. It can also be embedded in the html file Explain the layout of HTML? - Correct Answer-Every website has a specific layout to display content in a specific manner. <header>: It is used to define a header for a document or a section. <nav>: It is used to define a container for navigation links <section>: It is used to define a section in a document <article>: It is used to define an independent, self-contained article <aside>: It is used to define content aside from the content (like a sidebar) <footer>: It is used to define a footer for a document or a section What is a marquee? - Correct Answer-Marquee is used to put the scrolling text on a web page. It scrolls the image or text up, down, left or right automatically. You should put the text which you want to scroll within the <marquee>......</marquee> tag. How many tags can be used to separate a section of texts? - Correct Answer-Three tags are used to separate the texts. <br> tag - Usually <br> tag is used to separate the line of text. It breaks the current line and conveys the flow to the next line <p> tag - The <p> tag contains the text in the form of a new paragraph. <blockquote> tag - It is used to define a large quoted section. If you have a large quotation, then put the entire text within <blockquote>.............</blockquote> tag. What are empty elements? - Correct Answer-HTML elements with no content are called empty elements. For example: <br>, <hr> etc. What is the use of a span tag? - Correct Answer-The span tag is used for following things: For adding color on text For adding background on text Highlight any color text Example: <p> <span style="color:#ffffff;"> In this page we use span. </span> </p>