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 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147
| <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>Html Of Notes</title> </head> <body>
<p>段落</p> <br> <h1>标题</h1>
<strong>加粗</strong> <b>加粗</b> <em>倾斜</em> <i>倾斜</i> <del>删除线</del> <s>删除线</s> <ins>下划线</ins> <u>下划线</u>
<div></div> <span></span>
<img src="http://www.itcast.cn/2018czgw/images/logo.png" alt="alt图像显示不出来时显示" title="鼠标悬停的提示文本" height="100"/>
<a href="http://www.qq.com" target="_blank">腾讯</a>
<table> <thead> <tr> <th>姓名</th> <th>性别</th> <th> 年龄</th> </tr> </thead> <tbody> <tr> <td>刘德华</td> <td>男</td> <td> 56</td> </tr> </tbody> </table>
<ul> <li>无序列表</li> </ul> <ol> <li>有序列表</li> </ol> <dl> <dt>自定义列表</dt> <dd>子元素</dd> </dl>
<form action="xxx.php" method="get"> <label> 用户名: <input type="text" name="username" value="请输入用户名" maxlength="6"> </label><br> <label> 密码: <input type="password" name="pwd"> </label> <br> <label> 性别: 男<input type="radio" name="sex" value="男"> 女<input type="radio" name="sex" value="女" checked="checked"> 人妖<input type="radio" name="sex" value="人妖"> </label><br> <label> 爱好: 吃饭<input type="checkbox" name="hobby" value="吃饭"> 睡觉 <input type="checkbox" name="hobby"> 打豆豆 <input type="checkbox" name="hobby" checked="checked"> </label><br> <input type="submit" value="免费注册"> <input type="reset" value="重新填写"> <input type="button" value="获取短信验证码"> <br> 上传头像: <input type="file"> </form>
<label for="text"> 用户名:</label> <input type="text" id="text">
<form> 籍贯: <label> <select> <option>山东</option> <option>北京</option> <option>天津</option> <option selected="selected">火星</option> </select> </label> </form>
<form> <label> 今日反馈: <textarea cols="50" rows="5">pink老师,我知道这个反馈留言是textarea来做的 </textarea> </label> </form>
<header>头部标签</header>
<nav>导航栏标签</nav>
<section> 某个区域标签 <video src="https://www.baidu.com/mi.mp4" autoplay="autoplay" muted="muted" loop="loop" poster="https://www.baidu.com//mi.png">视频标签 </video> <audio src="https://www.baidu.com//music.mp3" autoplay="autoplay" controls="controls">音频标签</audio> <form action=""> <ul> <li><label>邮箱:<input type="email"/></label></li> <li><label>网址: <input type="url"/></label></li> <li><label>日期: <input type="date"/></label></li> <li><label>时间: <input type="time"/></label></li> <li><label>数量: <input type="number"/></label></li> <li><label>手机号码: <input type="tel"/></label></li> <li><label>搜索: <input type="search"/></label></li> <li><label>颜色: <input type="color"/></label></li> <li><input type="submit" value="提交"></li> </ul> </form> </section> </body> </html>
|