目录
<table>
元素的网页布局<div>
元素的网页布局<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>
注:
<map>
标签:定义图像地图。<area>
标签:定义图像地图中的可点击区域。
<hr/>
<!--注释-->
<p>段落<br>段落</p>
注:
<br/>
是一个空的 HTML 元素,关闭标签没有任何意义,所以它没有结束标签。<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>
注:
<table>
标签来定义。<colgroup>
和<col>
标签为表格中的列设置背景色。<caption>
标签定义表格的标题。<thead>
标签用于组合表头内容。<tbody>
标签用于组合主体内容。<tfoot>
标签用于组合页脚内容。<tr>
标签定义行。<th>
标签定义表头。<td>
标签定义单元格 。<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>
注:
<dl>
:定义列表。<dt>
:自定义列表项目。<dd>
:自定义列表项的描述。<p>段落</p>
<div style="color:blue">
<p>段落</p>
<p>段落</p>
</div>
<p>A <span style="color:red;font-weight:bold">B</span> C</p>
注:
<div>
块级元素,浏览器会在其前后显示折行。
<span>
内联元素,用来组合文档中的行内元素。
<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中的预留字符,对大小写敏感 。
指空格
" 引号
...
统一资源定位器(Uniform Resource Locators)
scheme://host.domain:port/path/filename
注: