Html miscellaneous
- 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.
- 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.
- 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 ©.
- 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.
- Which attribute is not essential under <iframe>?
-
View Hint View Answer Discuss in Forum
NA
Correct Option: B
An iframe is equivalent to a window that has been cut into our page, it is created using <iframe> element. Src, height, width attribute are essentially used inside of this. Src attribute specifies the URL of the page which is to be shown. Height and width specify the height and width of an iframe in pixels.