标签:maxlength 文本 div tle name 实体 action 常用 mit
html基本文档
<!DOCTYPE html> <html> <head> <title>文档标题</title> </head> <body> 可见文本... </body> </html>
html头部<head>
<head>元素包含了所有的头部标签元素,在 <head>元素中可以插入脚本(scripts)、样式文件(CSS)及各种meta信息。
可以添加在头部区域的元素标签为<title>、<style>、<meta>、<link>、<script>、<noscript>和 <base>等
<base> 标签描述了基本的链接地址,该标签作为HTML文档中所有的链接标签的默认链接。
<base href="http://www.runoob.com/images/" target="_blank">
<style> 标签定义了HTML文档的样式文件引用地址,也可以直接添加样式来渲染 HTML 文档。
<style type="text/css"> body {background-color:yellow} p {color:blue} </style>
<meta> 标签提供了元数据,通常用于指定网页的描述、关键词、文件的最后修改时间、作者等,元数据不显示在页面上但会被浏览器解析,元数据可以使用于浏览器(如何显示内容或重新加载页面),搜索引擎(关键词),或其他Web服务。
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript"> <!--为搜索引擎定义关键词--> <meta name="description" content="免费 Web & 编程 教程"> <!--定义网页描述内容--> <meta name="author" content="Runoob"> <!--定义网页作者--> <meta http-equiv="refresh" content="30"> <!--每30秒钟刷新当前页面-->
基本标签
<h1>最大的标题</h1> <h2> . . . </h2> <h3> . . . </h3> <h4> . . . </h4> <h5> . . . </h5> <h6>最小的标题</h6> <p>这是一个段落</p> <br> (换行) <hr> (一条水平线) <!-- 这是注释 -->
文本格式化
<b>粗体文本</b> <code>计算机代码</code> <em>强调文本</em> <i>斜体文本</i> <kbd>键盘输入</kbd> <pre>预格式化文本</pre> <small>更小的文本</small> <strong>重要的文本</strong> <abbr> (缩写) <address> (联系信息) <bdo> (文字方向) <blockquote> (从另一个源引用的部分) <cite> (工作的名称) <del> (删除的文本) <ins> (插入的文本) <sub> (下标文本) <sup> (上标文本)
样式/区块
<style type="text/css"> h1 {color:red;} p {color:blue;} </style> <div>文档中的块级元素</div> <span>文档中的内联元素</span>
无序列表
<ul> <li>项目1</li> <li>项目2</li> </ul>
有序列表
<ol> <li>第一项</li> <li>第二项</li> </ol>
自定义列表
<dl> <dt>项目 1</dt> <dd>描述项目 1</dd> <dt>项目 2</dt> <dd>描述项目 2</dd> </dl>
表格
<table border="1"> <tr> <th>表格标题</th> <th>表格标题</th> </tr> <tr> <td>表格数据</td> <td>表格数据</td> </tr> </table> <!-- <tr></tr>标签定义行,<th></th>标签定义表格标题,<td></td>定义表格数据 -->
链接
普通的链接:<a href="http://www.example.com/">链接文本</a> 图像链接: <a href="http://www.example.com/"><img src="URL" alt="替换文本"></a> 邮件链接: <a href="mailto:webmaster@example.com">发送e-mail</a> 书签: <a id="tips">提示部分</a> <a href="#tips">跳到提示部分</a>
图片
<img src="URL" alt="替换文本" height="42" width="42">
框架
<iframe src="demo_iframe.htm" height="42" width="42"></iframe>
表单
表单元素允许用户在表单中输入内容,比如文本域(textarea)、下拉列表、单选框(radio-buttons)、复选框(checkboxes)等等
<form action="demo_form.php" method="post/get"> <input type="text" name="email" size="40" maxlength="50"> <!--文本域,默认20个字符--> <input type="password" name=‘pwd‘> <!--密码字段--> <input type="checkbox" name=‘vehicle‘ value=‘car‘ checked="checked"> I have a car<!--复选框--> <input type="checkbox" name=‘vehicle‘ value=‘bike‘ checked="checked" >I have a bike <input type="radio" name=‘sex‘ value=‘male‘ checked="checked"> male <!--单选框--> <input type="radio" name=‘sex‘ value=‘female‘ checked="checked"> female <input type="submit" value="send"> <!--提交按钮--> <input type="reset"> <input type="hidden"> <select> <!--下拉列表--> <option value=‘apple‘>苹果</option> <!-- 拉列表中的选项--> <option value=‘banana‘selected="selected">香蕉</option> <option value=‘cherry‘>樱桃</option> </select> <textarea name="comment" rows="60" cols="20"></textarea> <!--多行文本域,用户可输入,字数不受限制--> </form>
实体
< 等同于 < > 等同于 > © 等同于 ?
以上内容参考菜鸟教程http://www.runoob.com/html/html-quicklist.html,并根据个人理解进行修改和补充。
标签:maxlength 文本 div tle name 实体 action 常用 mit
原文地址:https://www.cnblogs.com/Forever77/p/10127454.html