Add MF-6: Links and images
32
MF-6%3A Links and images.-.md
Normal file
32
MF-6%3A Links and images.-.md
Normal file
@@ -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: <https://www.example.com>
|
||||||
|
|
||||||
|
|
||||||
|
# Images in Markdown
|
||||||
|
|
||||||
|
Basic image syntax:
|
||||||
|

|
||||||
|
|
||||||
|
With a title that appears on hover:
|
||||||
|

|
||||||
|
|
||||||
|
You can use reference-style for images too:
|
||||||
|
![Alt text][logo]
|
||||||
|
|
||||||
|
[logo]: company-logo.png "Company Logo"
|
||||||
|
|
||||||
|
Images from URLs:
|
||||||
|

|
||||||
|
|
||||||
|
You can also make images clickable by wrapping them in links:
|
||||||
|
[](https://example.com)
|
||||||
Reference in New Issue
Block a user