首页 > 代码库 > HTML5学习笔记2014/11/21

HTML5学习笔记2014/11/21

HTML5实战:图片与标签配合制作页面

完成HTML基本标签和页面跳转,根据已经有的图片完成基本页面布局:

 

<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>    <title></title>     <style>         body {             margin:0px;             padding:0px;          }         p {             margin-left:145px;             font-size:20px;          }         span {             margin-left:145px;             color:#999;         }     </style></head><body>    <img src="/top.png" width="1275px" height="70px"/>    <img src="/title.png" width="1275px" height="400px" />    <div>        <p>最新推荐教程</p>        <span>会员都在学的教程,你学的一定有用</span>    </div>    <a href="/source.html" target="_blank"><img src="/content.png" width="1275px"height="539px"/></a>    <img src="/foot.png" width="1275px" height="503px"/>     </body></html>

 

HTML5学习笔记2014/11/21