html_QuickList.md

速查列表

目录

标题

<h1>标题1</h1>
<h2>标题2</h2>
<h3>标题3</h3>
<h4>标题4</h4>
<h5>标题5</h5>
<h6>标题6</h6>

段落

<p>段落</p>

链接

<a href="https://lcfu1.github.io/Note/" target="_blank">链接</a>

<a id="tips">提示部分</a>
<a href="#tips">跳到提示部分</a>

注:

图片

<img border="1" src="https://raw.githubusercontent.com/lcfu1/Image/master/favicon.ico" width="32" height="32" alt="favicon.ico" usemap="#faviconmap">
<map name="faviconmap">
	<area shape="circle" coords="16,16,16" alt="favicon" href="https://lcfu1.github.io/Note/">
</map>

注:

水平线

<hr/>

注释

<!--注释-->

折行

<p>段落<br>段落</p>

注:

文本格式化

<b>粗体文本</b>
<code>计算机代码</code>
<em>强调文本</em>
<i>斜体文本</i>
<kbd>键盘输入</kbd> 
<pre>预格式化文本</pre>
<small>更小的文本</small>
<strong>重要的文本</strong>
<q>块引用</q>
<abbr title="我是缩写的">缩写</abbr>
<acronym title="首字母缩写">缩写</acronym>
<address><a href="mailto:lcfu1@qq.com">lcfu1</a>.<br> </address>
<bdo dir="rtl">从右到左显示</bdo>
<blockquote>从另一个源引用的部分</blockquote>
<cite>工作的名称</cite>
<del>删除的文本</del>
<ins>插入的文本</ins>
<sub>下标文本</sub>
<sup>上标文本</sup>
<pre>
    预格式
文本
</pre>

表格

<table border="1" cellpadding="10" cellspacing="0">
<colgroup>
	<col style="background-color:blue">
    <col span="3" style="background-color:red">
</colgroup>
<caption>标题</caption>
<thead>
	<tr>
    	<th>Head</th>
    	<th>Header1</th>
		<th>Header2</th>
		<th>Header3</th>
	</tr>
</thead>
<tbody>
	<tr>
		<th>body</th>
  		<td rowspan="2">2</td>
  		<td colspan="2">2</td>
	</tr>
	<tr>
		<th>body</th>
  		<td>2</td>
  		<td>2</td>
	</tr>
</tbody>
<tfoot>
	<tr>
      	<th>foot</th>
      	<td>3</td>
		<td>3</td>
		<td>3</td>
    </tr>
</tfoot>
</table>

注:

有序列表

<ol start="2">
    <li>1</li>
    <li>2</li>
    <li>3</li>
</ol>
<ol type="A">
    <li>A</li>
    <li>B</li>
</ol> 

注:

无序列表

<ul style="list-style-type:circle">
    <li>1</li>
    <li>2</li>
    <li>3</li>
</ul>

注:

自定义列表

<dl>
	<dt>AA</dt>
    <dd>1</dd>
    <dt>BB</dt>
    <dd>2</dd>
</dl>

注:

区块

<p>段落</p>
<div style="color:blue">
	<p>段落</p>
	<p>段落</p>
</div>
<p>A <span style="color:red;font-weight:bold">B</span> C</p>

注:

样式

<style type="text/css">
h1 {color:red;}
</style>
<h1>A</h1>

使用<table>元素的网页布局

<table width="600" border="0">
<tr>
	<td colspan="2" style="background-color:red;text-align:center;">header</td>
</tr>

<tr>
	<td style="background-color:blue;vertical-align:top;">menu</td>
	<td style="background-color:grey;height:300px;width:500px;vertical-align:top;">body</td>
</tr>

<tr>
	<td colspan="2" style="background-color:red;text-align:center;">footer</td>
</tr>
</table>

使用<div>元素的网页布局

<div id="container" style="width:600px">

<div id="header" style="background-color:red;text-align:center;">header</div>

<div id="menu" style="background-color:blue;height:300px;width:100px;float:left;">menu</div>

<div id="content" style="background-color:grey;height:300px;width:500px;float:left;">body</div>

<div id="footer" style="background-color:red;clear:both;text-align:center;">footer</div>

</div>

表单

用于收集不同类型的用户输入,包含表单元素。

表单元素是允许用户在表单中输入内容,如:文本域(textarea)、下拉列表、单选按钮(radio-buttons)、复选框(checkboxes)等等。

<form name="input" action="" method="get">
username: <input type="text" name="user"><br>
password: <input type="password" name="password"><br>
<input type="submit" value="submit">
</form>

框架

使用框架可在同一个浏览器窗口中显示多个页面。

<iframe style="background-color:grey;" name="iframe" width="400" height="200" frameborder="0"></iframe></br>
<a href="https://lcfu1.github.io/Note/" target="iframe">点击</a>

注:

字符实体

是html中的预留字符,对大小写敏感 。

&nbsp;	指空格
&quot;	引号
...

更多

URL

统一资源定位器(Uniform Resource Locators)

scheme://host.domain:port/path/filename

注:

ASCII字符集

参考

URL编码

参考