HTML Anchor <A> Tag Attributes
What are links in HTML - HTML Links - Hyperlink How to create links to different sections of same page - connecting sections of same page In this tutorial, we tutorial you will learn about different attributes of anchor <a> tag. Hyperlink Attributes title : Defines the title of a link, which appears to the user as a tooltip. <a href=" https://cstutorials1.blogspot.com/2020/10/how-to-create-links-to-sections-on-same.html " title="info_about_link"> content visible as link</a> Output: content visible as link target : Specifies where to open the linked URL. It can have 4 values. _self - opens the linked URL inside same window or tab (default) _top - opens the linked URL in top most frame of the window. _parent - opens the linked URL in parent frame of the window. _blank - opens the linked URL in new tab or window. download : Prompts the user to download the linked resource instead of opening in new tab/window. <a href"addres...