首页 > 代码库 > html常用标记
html常用标记
1.HTML 文档结构
1.1 <html>,<head>,<title>,<body>标记,注意:html不区分大写小的
1.2 </br> 换行标记
<p></p> 段落标记
<h1></h1> 标题标记
<center></center> 居中标记
1.3 无序列表
<ul> <li>unlist1 </li> <li>unlist2 </li></ul>
- unlist1
- unlist2
1.4 有序列表
<ol> <li>olist1</li> <li>olist2</li></ol>
- olist1
- olist2
1.5 表格标记
<table width="318" height="167" border="1" align="center">
<caption>caption</caption>
<th>
<td>00</td>
<td>00</td>
</th>
<tr>
<td align="center" valign="middle">11</td>
<td align="center" valign="middle">12</td>
</tr>
<tr>
<td align="center" valign="middle">21<td>
<td align="center" valign="middle">22<td>
</tr>
<talbe>
0000
11 | 12 |
21 | 22 |
1.6表单
<form action="" method="post" enctype="multipart/form-data" name="form1"> 文本域:<input type="text" name="user" id="user" size="39" maxlength="39"></br> 密码域:<input type="password" name="password" id="password" size="40" maxlength="40"></br> 单选按钮:<input type="radio" name="sex" value="man" checked>男 <input type="radio" name="sex" value="woman" > 女 </br> 复选框:<input type="checkbox" name="checkbox" value="1" checked>1 <input type="checkbox" name="checkbox" value="2">2 </br> 文件域:<input type="file" name="file"></br> 提交按钮:<input type="submit" name="submit" value="提交"> </br> 重置按钮:<input type="reset" name="reset" value="重置"> </br> 普通按钮:<input type="button" name="button" value="按钮"> </br> 图形域:<input type="image" name="imagefield" src="" width="111" height="111"></form>
html常用标记
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。