Different types of HTML tags, uses and definition and implementation

Asked By 20 points N/A Posted on -
qa-featured

I would like to ask the different types of links in web pages? How to implement this in HTML/HTML5 codes? What is the meaning of “href”? What is the basic function of “link to bookmark” and “bookmark definition”? What are the attributes in entering a horizontal line? What is the main HTML tag used to implement this to a web page? How to use the image tag? Can I change the size of the image using it? What does SRC stand for and what is the use of it? Please help me. Thank you!

SHARE
Answered By 0 points N/A #172427

Different types of HTML tags, uses and definition and implementation

qa-featured

Hello Debra!

There are three different types of links.

1.  Bookmark – this is simple link within the same web page

Example: This is the link to book mark, <a href=”#one”> Word </a> and its twin to connect it with or the bookmark definition is <a name=”one”> Word </a>

2.  Local link – this a link within the same website

Example: <a href=”location of another webpage”>Title</a>

3.  External Link – link to another internet address or server.

Example: <a href=”website or web page address”>Title</a>

To create a horizontal line just use the attribute <hr> or <hr width=”as the width size”> for formatting the lines. The attribute used for image will be <img src="location of the image">. SRC defines the source of URL of the photo to be included in the web page. It is merely only the abbreviation of “source.”

Related Questions