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
| <!doctype html> <html> <head> <meta charset="utf-8"> <title>我的第二个html</title> </head> <body bgcolor="red" background="https://img95.699pic.com/photo/50086/2210.jpg_wh300.jpg"> <table border="1px" width="60%" height="150px"> <thead> <tr> <th>1</th> <th>2</th> <th>3</th> </tr> </thead> <tbody> <tr> <td colspan="2">4</td> </tbody> <tfoot> <td rowspan="2">6</td> </tr> <tr> <td>7</td> <td>8</td> </tr> </tfoot> </table> <img src="https://img95.699pic.com/photo/40015/8254.jpg_wh300.jpg" width="500px"/>
<br> <a href="http://baidu.com" target="_blank">百度</a> <ul> <li>北京</li> <ul> <li>北京</li> <li>北京</li> <li>北京</li> </ul> <li>北京</li> <li>北京</li> </ul> <ol> <li>北京</li> <ol> <li>北京</li> <li>北京</li> <li>北京</li> </ol> <li>北京</li> <li>北京</li> </ol> <form action="www.baidu.com" method="post"> <input type="" name="测试数据"> <input type="submit" value="登录"> </form> <form> <input type="button" value="你好"> <select name="value信息" multiple="multip1" size="2"> <option value="gz">高中</option> <option value="xx" selected>小学</option> <option value="dx">大学</option> <option value="sx">硕士</option> <option value="bs">博士</option> </select> <br> 简介 <textarea rows="10",cols="60" name="id"></textarea> </form> </body> </html>
|