76. Write about inserting link and images tag with attributes and examples in HTML. Inserting link How to insert a link Inserting? T he tags used to produce links are the <a> and </a> . T he <a> tells where the link should start and the </a> indicates where the link ends. E verything between these two will work as a link. T he target of the link is added to the <a> tag using the href=" http://www.whateverpage.com " setting. Note: to link to a certain point on a page, you must create an anchor point on that page. To insert an anchor point, simply insert the following code: <A name=insert name>Insert some text here</A> Attribute Links: This creates a link to another page or an e-mail. Using the # sign links to a defined spot on the current page or another page. Examples <a name="tips">Useful Tips Section</a> <a href="#tips">Visit the Useful Tips ...
Comments
Post a Comment