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>
上一篇:学习 opencv---(4) 分离颜色通道 && 多通道混合


下一篇:转!!Java中关于Null的9个解释(Java Null详解)