What kind of language is HTML?
HTML is a markup language
How do Semantic Elements introduce their meaning?
These elements introduce their meaning to both the web browser and the developer rather than just presentation.
Name some Deprecated Features in HTML5?
<acronym>,<applet>,<basefront> Etc.
What are some new features introduced in HTML5?
New Semantic/Non-Semantic Elements, Audio and Video, Forms 2.0, New Input Types, Websocket, and Persistent Local Storage
What are the Four types of New Attributes Syntax
Empty: <input type="text" value="Ron" disabled>
Unquoted: <input type="text" value=Ron>
Double-quoted: <input type="text" value="Ron Louis">
Single-quoted: <input type="text" value='Ron Louis'>
What is the purpose?
It is used to annotate text and embed tags in accurately styled electronic documents.
<article> and <aside> are some of the ....... Elements?
Semantic
What does the Deprecated tag <u> mean?
Defines underlined text
What new features were added to Audio and Video?
It can be embedded on your webpages without using any third-party plugins.
What type of Syntax is <input type="text" value=Ron>
Empty
What does the new standard of HTML5 bring
he new standard incorporates features like video playback and drag-and-drop that have been previously dependent on third-party browser plug-ins such as Adobe Flash, Microsoft Silverlight, and Google Gears.
What are non-semantic elements implanted with?
with a class attribute with the purpose of defining the structure and meaning of the content.
What does the Deprecated tag <noframes> mean?
Defines a noframe section
What is Websocket?
It allows a two way communication between the browser and the server which operates over a single socket.
What type of Syntax is
<input type="text" value="Ron" disabled>
<input type="text" value=Ron>
What is an alternate use of HTML5?
To display content on the world wide web.
<div> and <span> are examples of what?
Non-Semantic Elements
What does the Deprecated Tag <dir> mean?
Defines a noframe section
What is Forms 2.0?
In HTML5 it is enhanced with new types of controls for forms.
What type of Syntax is <input type="text" value="Ron Louis">
Double-quoted
True or False?
HTML5 is designed, as much as possible, to be backward compatible with existing web browsers.
True
Who implemented the non-semantic elements with a class attribute?
Web Developers
What does the Deprecated tag <Tt> mean?
Defines teletype text
What is Persistent Local Storage?
It allows web applications to store data locally within the user's browser.
What type of Syntax is <input type="text" value='Ron Louis'>
Single-quoted