Links and images

There are two main kinds of link in markdown and html: Resources such as images, and Redirects to other pages.

Links

To link to another website. The easiest way is to use markdown syntax.

[The visible link](/the actual link)

For example:

Find out more at [matts story site](http://storyfeet.com)

Expands to the folling html

Find out more at <a href="http://storyfeet.com">matts story site</a>

And looks like:

Find out more at matts story site

If the link is to your own page don’t bother with the http:// instead just use a /local/url/value to the intended local URL

Images

To include an image in your html the recommended way is to use html syntax, as it allows more flexibility with the image.

<img src="/path/to/image.jpg">