127k views
1 vote
Nicholas updates his company’s website to include a hyperlink to its event calendar on the homepage. What coding language does he use to insert the link?

2 Answers

5 votes

Answer:

HTML (HyperText Markup Language)

Step-by-step explanation:

HTML is the basic language for the web. HTML is rendered by browsers and are used to display contents on the web page by using special markup characters called tags.

Some of these tags are;

<b></b> for making a text bold,

<i></i> for making a text italicized.

Other tags include that used to insert a hyperlink to various pages or sections within or outside the website.

To achieve this, the <a></a> tag is used. This tag has an attribute called href that allows to specify the webpage or section of the webpage to go to when the link is clicked.

User Andrew Bickerton
by
6.5k points
4 votes

Answer:

HTML

Step-by-step explanation:

Hypertext Markup Language (HTML) is the standard markup language for documents designed to be displayed in a web browser. With HTML you can create your own Website.

HTML consists of a series of elements and HTML elements tell the browser how to display the content.

Hope this helps!

User Marcella
by
7.3k points