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 With 100% Correct And Verified Answers 2024, Exams of Advanced Education

A comprehensive html exam with 100% correct and verified answers for the year 2024. It covers a wide range of html topics, including the meaning of html, web standards, html elements for headings, line breaks, important and emphasized text, hyperlinks, character entities, inline and block elements, numbered and bulleted lists, form elements like checkboxes and text inputs, image insertion, iframes, html comments, html5 doctype, footer and header elements, audio and video playback, canvas for graphics, and various other html attributes and elements. The exam questions and answers are designed to thoroughly test the user's understanding of html and web development concepts, making it a valuable resource for students, web developers, and anyone interested in mastering html.

Typology: Exams

2023/2024

Available from 08/03/2024

Qualityexam
Qualityexam 🇰🇪

1

(1)

1.9K documents

1 / 3

Toggle sidebar

Related documents


Partial preview of the text

Download HTML Exam With 100% Correct And Verified Answers 2024 and more Exams Advanced Education in PDF only on Docsity! HTML Exam With 100% Correct And Verified Answers 2024 What does HTML stand for? - Correct Answer-Hyper Text Markup Language Who is making the Web standards? - Correct Answer-The World Wide Web Consortium What is the correct HTML element for the largest heading? - Correct Answer-<h1> What is the correct HTML element for inserting a line break? - Correct Answer-<br> What is the correct HTML element to define important text? - Correct Answer-<strong> What is the correct HTML element to define emphasized text? - Correct Answer-<em> What is the correct HTML for creating a hyperlink? - Correct Answer-<a href="url"> urlname </a> Which Character is used to indicate an end tag? - Correct Answer-/ Inline elements are normally displayed without starting a new line - Correct Answer- True How can you make a numbered list? - Correct Answer-<ol> How can you make a bulleted list? - Correct Answer-<ul> What is the correct HTML for making a checkbox? - Correct Answer-<input type = "checkbox> What is the correct HTML for making a text input field? - Correct Answer-<input type = "text"> What is the correct HTML for inserting an image? - Correct Answer-<img src = "image.gif" alt="MyImage"> An <iframe> is used to display a webpage within a web page. T/F - Correct Answer- True HTML comments start with <!-- and end with --> . T/F - Correct Answer-True Block elements are normally displayed without starting a new line. T/F - Correct Answer-False Which HTML element defines the title of a document? - Correct Answer-<title> Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed? - Correct Answer-alt Which doctype is correct for HTML5? - Correct Answer-<!DOCTYPE html> Which HTML element is used to specify a footer for a document or section? - Correct Answer-<footer> In HTML, you can embed SVG elements directly into an HTML page. T/F - Correct Answer-True What is the correct HTML element for playing audio files? - Correct Answer-<audio> What is the HTML global attribute, "contenteditable" used for? - Correct Answer-to specify whether the content of an element should be editable or not What is the HTML <canvas> element used for? - Correct Answer-to draw graphics In HTML, which attribute is used to specify that an input field must be filled out? - Correct Answer-required Which HTML element is used to specify a header for a document or section? - Correct Answer-header What is the correct HTML for adding a background color? - Correct Answer- style="background-color: red;" How can you open a link in a new tab/browser window? - Correct Answer- target="_blank" Which of these elements are all <table> elements? - Correct Answer-<table> <tr>table row <th>table header <td>table data cell What is the correct HTML for making a drop-down list? - Correct Answer- What is the correct HTML for making a text area? - Correct Answer- What is the correct HTML for inserting a background image? - Correct Answer- What is the correct HTML element for playing video files? - Correct Answer-