| Attribute
| Description
| Coding
| Example
|
| alt
| Used to describe images. Default is "Non-BS01 Image".
| <img>URL" alt="TEXT"</img>
|
|
| style='border: ;'
| Adds a border around an image.
| <img>URL" style='border: #px solid #000000;'</img>
|
|
| style='min-width: ; min-height: ;'
| Used make images bigger.
| <img>URL" style='min-width: #px; min-height: #px;'</img>
|
|
| style='max-width: ; max-height: ;'
| Used make images smaller.
| <img>URL" style='max-width: #px; max-height: #px;'</img>
|
|
| onmouseover="this.src=' '"
| Changes the image when the mouse goes on top of it.
| <img>URL1" onmouseover="this.src='URL2'"</img>
|
|
| onmouseover="this.src=' '" '" onmouseout="this.src=' '"
| Changes the image when the mouse goes on top of it, then changes it back when the mouse isn't on top of it.
| <img>URL1" onmouseover="this.src='URL2'" onmouseout="this.src='URL1'"</img>
|
|
| onclick="this.src=' '"
| Changes the image when it is clicked on.
| <img>URL1" onclick="this.src='URL2'"</img>
|
|