# 图片<no value>

插入图片方法与插入链接语法基本相似,对比插入链接,插入图片最左边多了一个 !
语法为:
语法:
`![alt 属性文本](图片地址)`
`![alt 属性文本](图片地址 "鼠标悬停描述")`

示例1:插入微软logo,描述:微软logo
``` markdown
![微软logo](https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE1Mu3b?ver=5c31 "Microsoft LOGO")
```
输出:
![微软logo](https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE1Mu3b?ver=5c31 "Microsoft LOGO")


``` markdown
[![微软LOGO](https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE1Mu3b?ver=5c31 "打开微软主页")](https://www.microsoft.com)
```

输出:
[![微软LOGO](https://img-prod-cms-rt-microsoft-com.akamaized.net/cms/api/am/imageFileData/RE1Mu3b?ver=5c31 "打开微软主页")](https://www.microsoft.com)




