Inserting Images in Markdown
Images can be added to any markdown page using the following markdown syntax:
![alt text for screen readers](/path/to/image.png "Text to show on mouseover")
.
Example:
![MarineGEO circle logo](/assets/img/MarineGEO_logo.png "MarineGEO logo")
Inserting Images using html
Images can also be inserted on pages using the html <img>
tag. One advantage of using the html tag is the ability to control size and other style elements.
<img src="/assets/img/MarineGEO_logo.png" alt="MarineGEO circle logo" style="height: 100px; width:100px;"/>