Hi Nupur,
Some of the basic html tags that are needed to develop simple pages are:
html, body, font, frame, li, anchor ,image tag etc
Out of these html and body tags are common. Also, font tag is used to select the font of the text to be displayed in the page.
Frame: Frame is the mechanism of dividing a web page into number of panels. For this purpose, frame tag is used in html.
List: To display lists, li tag is used. Most of the times, we are arised with the need to display the contents in the form of a list. So, li tag is useful here. It is available in 3 forms i.e. ordered list, unordered list and definition list.
Now, the anchor tag, which you require.
First of all, the links are the text or graphics in the web page that can be used to navigate, i.e. by clicking them we are taken to some other web page. A link can be text or some graphic like image.
The links can be displayed by using the anchor tag. Anchor tag is denoted by
Anchor tag has various attributes. Out of these the href attribute is used to give the path of the page to which you want to navigate after clicking the link.
Eg.
Click herehere, this link is going to open your question itself (If you want to see how, it works you must refer anchor tag). The clickable text can be displayed by adding it in between opening and closing anchor tag. In this case, it is click here.
Moreover, there are two types of links, internal and external.
The internal links are used to navigate on the same page(Eg. link to top or bottom of the same page), while the external links are used to navigate on some other page.