Which line of HTML code will result in a single paragraph that contains the line “Click here to visit our website” with a hyperlink on the word “here”?



A.
Click here to visit our website.

B.

Click to visit our website.

C.

Click here to visit our website.

D.

Click here to visit our website.

Which line of HTML code will result in a single paragraph that contains the line Click here to visit our website with a hyperlink on the word hereA Click here t class=

Respuesta :

Answer:

Click <a href = "web address">here</a> to visit our website

Explanation:

Required

Hyperlink on here

It is difficult to pick the answers from the given options; so, I will write the HTML code myself.

To create a hyperlink, we use the a tag followed by the href attribute.

So, to create hyperlink on "here", we have:

<a href = "web address">here</>

The web address is the expected address which the link links to.

So, the complete code is:

Click <a href = "web address">here</a> to visit our website