Html miscellaneous
- Which is not the attribute of element?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
<meta> element contains information about web page. Description attribute contains the description of the web page, keywords contains the list of comma separated words, robots decide to add pages to search results.
- Copyright symbol can be included by _________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
HTML code has some characters that are reserved so for using those on the page one need to know “escape” characters. If you want to add a copyright symbol to the web page they can use © or ©.
- Attributes that allow to identify particular element are ____________.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
The id and class attributes are useful in identifying particular elements. <iframe> element is for creating frames in web page, <div> and <span> are inline elements, metadata is provided by <meta> tag.
- All elements are identified by their __________ and are marked up using either start tags and end tags or self-closing tags.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: C
The attribute name describes name of <input> element. The tagName property returns the tag name of the element. In HTML, the returned value of the tagName property is always in UPPERCASE. Name of class is returned by class name.
- The __________ element represents a span of text that is isolated from its surroundings for the purposes of bidirectional text formatting.
-
View Hint View Answer Discuss in Forum
NA
Correct Option: D
The base Url target relative to all URL’s in document is specified by base tag in html. B is for bold text representation. bdi stands for Bi-directional Isolation. This element is useful when embedding user-generated content with an unknown directionality. Direction of text is displayed by bdo element.