Keyword

Result: 252 questions

What is XML?

Answer:

Extensible Markup Language
Used to structure and describe information

- Tag-based syntax like HTML
- You can make up your own tags

View

What is XML used for?

Answer:

- Intended for the Internet
- A way to interchange data between disparate systems
- Foundation for XTHML, RSS, AJAX
- Does not replace HTML; more of a way to create tag sets like HTML for specific purposes

View

What is XML Namespaces?

Answer:

Provide a way for preventing tags with same names & different meanings from conflicting. 

Has the form: <html xmlns = "http://www.w3.org" >
Doesn't actually use the URLs

You must declare a namespace with a prefix; the XML namespace without colons and a prefix is the default namespace (in the case below, HTML):

<table xmlns="http://www.w3.org" xmlns:furn="http://www.furniture.org/tables" >
<tr><td><furn:table sku="12312">Table</td></tr>
<tr><td><furn:type>Coffee Table</td></tr>

View

What does HTML stand for?

Quiz

Choose the correct HTML element for the largest heading:

Quiz

What is the correct HTML element for inserting a line break?

Quiz

What is the correct HTML for adding a background color?

Quiz

Choose the correct HTML element to define important text

Quiz

Choose the correct HTML element to define emphasized text

Quiz

What is the correct HTML for creating a hyperlink?

Quiz

What is the correct HTML for making a checkbox?

Quiz

What is the correct HTML for making a text input field?

Quiz

What is the correct HTML for making a drop-down list?

Quiz

What is the correct HTML for making a text area?

Quiz

What is the correct HTML for inserting an image?

Quiz

What is the correct HTML for inserting a background image?

Quiz

HTML comments start with <!-- and end with -->

Quiz

Which HTML element defines the title of a document?

Quiz

Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?

Quiz

Which doctype is correct for HTML5?

Quiz

© 2017 QuizBucket.org