106k views
2 votes
_____ is an example of a comment in Hypertext Markup Language (HTML).

a.
c. <-- This is my comment -->
d. ** This is my comment **/>

User Davorp
by
5.0k points

1 Answer

5 votes

Answer:

The correct answer is:

< ! - - This is my comment - - >

Step-by-step explanation:

Hypertext Markup language (HTML) is the standard language for describing web pages. It is a tagging language for achieving fonts, colour, graphic and hyperlink effects on webpages.

HTML tags are hidden keywords within webpages that determines how the web browsers format and display the content. Most times, tags have the opening and the closing parts which are usually the same except for the addition of a forward slash ( / ) in the closing tag.

HTML comments are not displayed in the browser, but they can help document your HTML source code. The comment tag is written as:

< ! - - This is my comment - - >

Note that there is an exclamation point (!) in the beginning tag, but not in the closing tag.

User Edu Yubero
by
4.8k points