diff --git a/MF-6%3A Links and images.-.md b/MF-6%3A Links and images.-.md new file mode 100644 index 0000000..6471f5b --- /dev/null +++ b/MF-6%3A Links and images.-.md @@ -0,0 +1,32 @@ +# Links in Markdown + +Here's an [inline link](https://www.example.com) to a website. + +You can also add [a link with a title](https://www.example.com "This appears on hover"). + +For reference-style links, you can write [this link][1] or even [this one][] using the link text itself. + +[1]: https://www.example.com +[this one]: https://www.another-example.com + +Direct URLs work too: + + +# Images in Markdown + +Basic image syntax: +![Alt text](image.jpg) + +With a title that appears on hover: +![Alt text](image.jpg "Image title") + +You can use reference-style for images too: +![Alt text][logo] + +[logo]: company-logo.png "Company Logo" + +Images from URLs: +![Remote image](https://example.com/photo.jpg) + +You can also make images clickable by wrapping them in links: +[![Alt text](thumbnail.jpg)](https://example.com) \ No newline at end of file