_______ is meant to return rules to HTML and make it more reliable. Its clean and error-free code helps pages load faster. It is important for phone where processing power may be limited.
strict HTML
What is the most common type of HTML?
Frameset?
Transitional?
Strict?
XML?
Transitional.
Frameset HTML?
Allows web developers to create a mosaic of HTML documents where multiple documents can be connected into a single screen.
Which HTML can be used to create a menu system?
frameset HTML
What elements in HTML modify and format content?
Tags
Which tag should you use to make an element draggable?
draggable =’true’
Which HTML element should we use to display a menu?
<nav>
</nav>
How much data can you store inside an HTML cookie?
4KB
When adding a video using the ‘video’ tag, how many sources can we add?
As many as needed.
HTML tags or elements are enclosed between:
< >
wicket or bracket symbols.
The symbol used to indicate a ‘close’ tag for <b> is?</b>
</b>
The capability enabling the linking of one web page to another is:
Hypertext
In 2023, the HTML standard used as guidance for web site development is:
HTML5
How do you embed video and audio content using HTML5 features?
Using the video and audio elements.
What is the use of codecs in a browser?
Codecs help to decode audio and video files into visible graphics and audible sound in the browser.
Which attribute helps to buffer the audio/video content in HTML5?
preload
Which attribute will add the start/stop buttons and volume adjustments to the audio/video elements in HTML5?
‘controls’ attribute
What is a codecs?
An HTML5 codec compresses and decompresses audio or video files for efficient storage and playback. It ensures media compatibility across browsers and devices by encoding, decoding, and rendering media content seamlessly.
What defines an element in HTML5?
An element is defined by a start tag, some content, and an end tag.
Attributes provide additional information about _________.
elements
Identify the tag and element, content, and attribute in the following:
<a>Visit W3Schools</a>
tag is <a> </a>
Element <a> defines a hyperlink.</a>
Content is “https://www.w3schools.com”>Visit W3Schools.
Attribute is href, which specifies the URL of the page the link goes to.
Document Type Definition (DTD)?
A set of markup declarations. This set defines a document type for an SGML based markup language.
Three types of Document Type Definition in HTML 4.01?
HTML 4.01 Strict DTD.
HTML 4.01 Transitional DTD.
HTML 4.01 Frameset DTD.
What is the first line of your page on every HTML5 code?
<!DOCTYPE html>