How to Add an Icon to HTML
- 1). Open the HTML document using a text or HTML editor. Scroll to the area where you want to place your icon.
- 2). Type following data, using the path name for the image you are adding:
<IMG src="myimages/myicon.gif" /> - 3). Add the width and height attributes if you want to resize the icon:
<IMG src="myimages/myicon.gif" width=”75” height=”75” /> - 4). Save the file. Open the modified Web page using a Web browser.
Source...