DESIGNING STATIC WEB PAGES - Practice Mode

1) Which html tag is used to divide a row into data cells?
Correct Answer: <td> and </td>
2) Which is the correct syntax for adding alternate text for image, if the image cannot be displayed?
Correct Answer: <img src = "boat.gif" alt = "big boat"/>
3) Which is the correct H1 tag for right alignment?
Correct Answer: <h1 align = "right">.....</h1>
4) What is the use of forms in HTML?
Correct Answer: To send the data to server
5) What is the correct syntax for making a hyperlink?
Correct Answer: <a href = "http:// nimi.gov.in">nimi</a>
Explanation:

In HTML, the correct syntax for creating a hyperlink (also known as a "link" or "anchor") is the <a> (anchor) tag, used in combination with the href attribute.

 

The basic syntax for creating a hyperlink is as follows:

<a href="url">link text</a>

The <a> tag is used to create the hyperlink

The href attribute is used to specify the destination URL (Uniform Resource Locator) of the link, it can be either a relative path or an absolute path.

The text between the opening <a> tag and the closing </a> tag is the text that will be displayed as the link.

 

<a href="https://www.ThinkITI.com">Visit Think ITI Website</a>