Android程序员学WEB前端(2)-HTML(2)-锚点链接列表表单-Sublime

来源:互联网 发布:iphoto下载 mac 编辑:程序博客网 时间:2024/05/15 23:54
转载请注明出处:http://blog.csdn.net/iwanghang/article/details/76522417
觉得博文有用,请点赞,请评论,请关注,谢谢!~


锚点 链接 列表 表单

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head>    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">    <title>第二天</title></head><body><!-- src 来源 title 鼠标指向显示文字 alt 加载失败时的显示文字 --><!-- width 宽度 height 高度 border 边框 --><img src="iwanghang.jpg" title="iwanghang" alt="头像" width="300" height="300" border="1" /><!-- target 跳转方式 --><a href="http://blog.csdn.net/iwanghang" target="_blank">点击跳转我的博客</a><a href="#p1">点我找到美女</a><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><img id="p1" src="https://ss0.baidu.com/73t1bjeh1BF3odCf/it/u=2239989275,1992259040&fm=85" title="美女" alt="美女头像"><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p><p>-</p></body></html> 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"><head>    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">    <title>第三天</title></head><body>    <p>有序列表:</p>    <ol type="i" start="3">        <li>邻村少女为何半夜惊叫?</li>        <li>家中母猪为何惨遭杀害?</li>        <li>村里的三蹦子怎么突然就不打火了呢?</li>        <li>沈阳房价为何持续三个月上涨?</li></ol>    <p>无序列表:</p>    <ul type="square">        <li>邻村少女为何半夜惊叫?</li>        <li>家中母猪为何惨遭杀害?</li>        <li>村里的三蹦子怎么突然就不打火了呢?</li>        <li>沈阳房价为何持续三个月上涨?</li>    </ul>    <p>表单:</p>    <table>    <tr>    <td>第一个单元格</td>    <td>第二个单元格</td>    <td>第三个单元格</td>    </tr>    </table>    <p>表单:</p>    <table border="1" width="400" height="200">    <tr>    <td>第一个单元格</td>    <td>第二个单元格</td>    <td>第三个单元格</td>    </tr>    </table>    <p>表单:</p>    <table border="1" cellspacing="0" cellpadding="50" bordercolor="red" bgcolor="pink" align="center">    <tr>    <td>第一个单元格</td>    <td>第二个单元格</td>    <td>第三个单元格</td>    </tr>    </table>    <p>表单:</p>    <table border="1" width="400" height="200" bordercolor="red" background="woman.jpg">        <tr >    <th colspan="3">表单</th>    <td rowspan="4">我是多余的</td>    </tr>    <tr align="left" bgcolor="pink" valign="top"><!-- valign{top|middle|bottom} -->    <td>第一个单元格</td>    <td>第二个单元格</td>    <td>第三个单元格</td>    </tr>        <tr>    <td>第四个单元格</td>    <td>第五个单元格</td>    <td>第六个单元格</td>    </tr>    </table></body></html> 


上面是源码,下面是页面:


头像点击跳转我的博客点我找到美女

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

美女头像

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-

-







有序列表:

  1. 邻村少女为何半夜惊叫?
  2. 家中母猪为何惨遭杀害?
  3. 村里的三蹦子怎么突然就不打火了呢?
  4. 沈阳房价为何持续三个月上涨?

无序列表:

  • 邻村少女为何半夜惊叫?
  • 家中母猪为何惨遭杀害?
  • 村里的三蹦子怎么突然就不打火了呢?
  • 沈阳房价为何持续三个月上涨?

表单:

第一个单元格 第二个单元格 第三个单元格

表单:

第一个单元格 第二个单元格 第三个单元格

表单:

第一个单元格 第二个单元格 第三个单元格

表单:

表单 我是多余的 第一个单元格 第二个单元格 第三个单元格 第四个单元格 第五个单元格 第六个单元格






转载请注明出处:http://blog.csdn.net/iwanghang/article/details/76522417



欢迎移动开发爱好者交流
沈阳或周边城市公司有意开发Android,请与我联系
联系方式

微信:iwanghang
QQ:413711276
邮箱:iwanghang@qq.com



觉得博文有用,请点赞,请评论,请关注,谢谢!~

阅读全文
0 0