2016 - 1- 22 img tag and the lists (intro to HMTL&CSS)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2016 - 1- 22 img tag and the lists (intro to HMTL&CSS)相关的知识,希望对你有一定的参考价值。
1 :The img tag
img tag allows put some img file into page. just like :
<a href = "me.png"> <img src = "me.png" width = "50%" /> </a>
And the " src = "me.png" " lets brows knows where the img in computer.The " width = 50% "tells that the img‘s width is whole page‘s with 50%.
And if zoom the page u would find the img‘s size change too! But if u set like " width = 150px ".It will not!
2.The tag for listing
1.orderd list
<ol> <li>133.My street</li> <li>My town</li> <li>My nation</li> </ol>
2. Unformatted list
<ul> <li>133.My street</li> <li>My town</li> <li>My nation</li> </ul>
以上是关于2016 - 1- 22 img tag and the lists (intro to HMTL&CSS)的主要内容,如果未能解决你的问题,请参考以下文章
[2016-03-31][codeforces][659C][Tanya and Toys]