If you want to insert images into your HTML Help program (which is very likely!), you need to follow these steps:
1) Save the image in the image directory.
2) Add the file to your project by clicking the Add/Remove Files icon on the
Project Tab
3) Add the html below in the HTML file where you want to display the image,
modifying it to your needs:
<img src="..\images\imagename.gif" alt="Tooltip Text Here">
We use the .. to tell the compiler to go up a folder, as the HTML file will be in the html directory:
| Path | Current Folder |
| root\html | |
| .. | root |
| ..\images | root\images |
4) Save and compile your HTML Help file.
Comments