2016 - 1- 22 img tag and the lists (intro to HMTL&CSS)

mac2022-06-30  17

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>

 

转载于:https://www.cnblogs.com/BJTUzhengli/p/5152664.html

相关资源:JAVA上百实例源码以及开源项目
最新回复(0)