Html miscellaneous
- A/An _________ is essentially a macro that allows a short name to be associated with the replacement text.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
Comments are used to provide idea about coding syntax which is ignored by the browser. Reserved characters in HTML must be replaced with character entities. Characters, not present on your keyboard, can also be replaced by entities. Property of an element is defined by the attribute.
- The __________ defines the syntax of markup constructs and include additional definitions such as character entity references.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
SGML (Standard Generalized Markup Language) is a standard for how to specify a document markup language or tag set. Property of an element is defined by the attribute. The DTD defines the syntax of markup constructs. The DTD may include additional definitions such as character entity references.
- The ________ declaration specifies which characters and delimiters may appear in the application.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
XML(Extensible Markup Language) and HTML(Hypertext Markup Language) are web markup language used to design and create web pages. The DTD defines the syntax of markup constructs. SGML (Standard Generalized Markup Language) is a standard for how to specify a document markup language or tag set. Such a specification is itself a document type definition (DTD). SGML is metadata.
- All attribute declarations begin with the keyword ____________ followed by the element name, attribute name, attribute type, and default data information.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
The ATTLIST declarations identify which element types may have attributes, what type of attributes they may be, and what the default value of the attributes are. Syntax is <!ATTLIST elementName attributeName dataType default >. XML and HTML are web markup language used to design and create web pages. SGML stands for Standard Generalized Markup Language.
- For smaller text which element is used?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: A
min is an attribute for input method for inserting minimum value. smaller text is define by <small>element. <em> is used for emphasis usually it is display in italics.