Which attribute tells the browser where to go when a hyperlink is clicked?
Symbol used at the beginning of the HREF text is
From which tag the descriptive list starts?
The attribute, which define the relationship between current document and HREF'ed URL is
1) How to create a hyperlink in HTML?
The HTML provides an anchor tag to create a hyperlink that links one page to another page. These tags can appear in any of the following ways:
Unvisited link - It is displayed, underlined and blue.
Visited link - It is di...
See more
5) What are the new FORM elements which are available in HTML5?
The new Form elements in HTML5 offers much better functionality than the earlier versions.
The tags given provided to carry out these functions are:
1) <datalist> – This tag is use to specify a list of op...
See more
3) Explain five new input types provided by HTML5 for forms?
Following are the important, new data types offered by HTML5:
a.Date: It allows the user to select a date.
b.datetime-local: This input type allows the user to select a date and time without time zone.
c.d...
See more
2) What happens if you open the external CSS file in a browser?
When you try to open the external CSS file in a browser, the browser
cannot open the file, because the file has a different extension. The
only way to use an external CSS file is to reference it using
<link...
See more
1) How do you create links to sections within the same page?
Links can be created using the <a> tag, with referencing
through the use of the number (#) symbol. For example, you can have one
line as <a href=”#topmost”>BACK TO TOP</a>, which would
resul...
See more
Which element is used to create multi-line text input?
What is the default type of ‘type’ attribute of <input> element?