1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
| <html> <head> <title>第一个html </title> </head> <body>
<h1>标题1</h1> <h2>标题2</h2> <font size = "5" face="黑体" color="blue"> 这是第一个页面 </font>
<p><a href="#num-1">锚点1</a></p> <p><a href="xxx.html#num-1">锚点1</a></p>
<a name="num-1"> <p> 第二段
<img src="平级或者绝对路径" alt="显示失败时的提示" width="" height=""> <a href="页面网址或者图片地址">页面显示的字</a> <a href="页面网址或者图片地址" target="_blank" >页面显示的字<img src="图片位置"> </a>
<ul> <li>1</li> <li>2</li> </ul> <ol> <li>1</li> <li>2</li> </ol>
<table border="1" width="50%"> <tr> <td rowspan="2">1</td> <td>1</td> <td>1</td> </tr> <tr> <td>1</td> <td>1</td> </tr> <tr> <td colspan="3">1</td> </tr> </table>
<form action="aaa" method="post"> <label>请输入姓名</label> <input type="text" name="" id=""> <label>请输入性别</label> <input type="radio" name="xb" id="" value="男">男 <input type="radio" name="xb" id="" value="女">女 <label>请输入生日</label> <select> <option value="1995">1995</option> <option value="1996" selected="selected">1995</option> </select> 头像<image src="图片位置" > <select> <option value="图片名字">图片名字</option> <option value="图片名字">图片名字</option> </select> <input type="button" name="普通按钮"> <input type="submit" name="提交按钮"> </form>
<textarea rows="" cols="" name="" id=""> 请输入 </textarea>
<input type="file" name=""><input type="" value="上传">
000<input type="" name="">000
</p>> <a/> </body> </html>
|