0% found this document useful (0 votes)
9 views3 pages

Data Processing and Analysis Guide

The document contains examples of how to create links to images and other files using HTML <a> and <img> tags, including removing borders from images, linking to external pages, creating email links, and inserting both static and animated images.

Uploaded by

Naiem Jalaly
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views3 pages

Data Processing and Analysis Guide

The document contains examples of how to create links to images and other files using HTML <a> and <img> tags, including removing borders from images, linking to external pages, creating email links, and inserting both static and animated images.

Uploaded by

Naiem Jalaly
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

<html> <body> <p>Create a link of an image: <a href="[Link]"> <img src="smiley.

gif" alt="HTML tutorial" width="32" height="32" /> </a></p> <p>No border around the image, but still a link: <a href="[Link]"> <img border="0" src="[Link]" alt="HTML tutorial" width="32" height="32" /> </a></p> </body> </html>

<p>Locked in a frame?</p> <a href="[Link] target="_top">Click here!</a> </body> </html> <html> <body> <p> This is an email link: <a href="[Link] Send Mail</a> </p> <p>

<b>Note:</b> Spaces between words should be replaced by %20 to ensure that the browser will display the text properly. </p> </body> </html> <html> <body> <h2>Norwegian Mountain Trip</h2> <img border="0" src="/images/[Link]" alt="Pulpit rock" width="304" height="228" /> </body> </html> <html> <body> <p> An image: <img src="[Link]" alt="Smiley face" width="32" height="32" /> </p> <p> A moving image: <img src="[Link]" alt="Computer man" width="48" height="48" /> </p> <p> Note that the syntax of inserting a moving image is no different from a nonmoving image. </p> </body> </html>

You might also like