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
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
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
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>
What does HTML stand for?
Choose the correct HTML element for the largest heading:
What is the correct HTML element for inserting a line break?
What is the correct HTML for adding a background color?
Choose the correct HTML element to define important text
Choose the correct HTML element to define emphasized text
What is the correct HTML for creating a hyperlink?
What is the correct HTML for making a checkbox?
What is the correct HTML for making a text input field?
What is the correct HTML for making a drop-down list?
What is the correct HTML for making a text area?
What is the correct HTML for inserting an image?
What is the correct HTML for inserting a background image?
HTML comments start with <!-- and end with -->
Which HTML element defines the title of a document?
Which HTML attribute specifies an alternate text for an image, if the image cannot be displayed?
Which doctype is correct for HTML5?
© 2017 QuizBucket.org