Html 常见标签

2018-05-18  本文已影响0人  employeeeee
<area shape="circle" coords="x1,y1,r" href="" >
<area shape="polygon" coords="x1,y1,x2,y2..." href="">
<area shape="rect" coors="x1,y1,x2,y2" href="">

圆形坐标含义是圆心坐标和半径
多变行坐标含义是每一个顶点的坐标
矩形的坐标含义是左上第一个坐标和对角坐标。

<audio controls="controls" autoplay="autoplay">
<canvas id="myCanvas"></canvas>
<script type="text/javascript">
var ctx=documents.getElementById("myCanvas").getContext('2d');
ctx.fillstyle='#FF0000'
ctx.fillRect(0,0,100,100);
</script>
<input id="MyCar" list="cars"/>
<datalist id="cars">
<option value="BMW">
<option value="Ford">
<option value="Volvo">
</datalist>

*<dd>自定义列表中的一部分
*<del>文字有横线
*<details>文档细节

<details>
<summary>Copyright 2011.</summaty>
<p>All pages and graphics on this web site </p>
</details>
image.png

*<dl> 一个自定义列表

<dl>
<dt>计算机</dt>
<dd>用来计算的一起... ...</dd>
<dt>显示器</dt>
<dd>以视觉方式显示信息的装置... ...</dd>
</dl>
<form>
<fieldset>
<legend>健康信息</legend>
身高:<input type="text">
体重:<input type="text">
</fieldset>
</form>
<frameset cols="25%,50%,25%">
<frame src="frame_a.html">
<frame src="frame_b.html">
<frame src="frame_c.html">
</frameset>
<select>
<optgroup label="Swedish Cars">
<option value="volvo">Volvo</option>
<option value="saab">Saab</option>
</optgroup>

<optgroup label="German Cars">
<option value="mercedes">Mercedes</option>
<option value="audi">Audi</option>
</optgroup>
</select>

<output>执行计算然后在output中 显示结果

<form oninput="x.value=parseint(a.value)+parseint(b.value)">0
<input type="range" id="a" value="50">100
+<input type="number" id="b" value="50">
=

*<progress> 显示下载进度.

<progress value="22" max="100"></progress>
<html>
<head>
<style type="text/css">
thead {color:green}
tbody{color:blue;height:50px}
tfood{color:red}
</style>
</head>
<body>

<table border="1">
<thead>
<tr>
<th>Month</th>
<th>Saving</th>
</tr>
</thead>
<tbody>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>&80</td>
</tr>
</tbody>
  <tfoot>
    <tr>
      <td>Sum</td>
      <td>$180</td>
    </tr>
  </tfoot>
</table>
</body>
</html>
上一篇下一篇

猜你喜欢

热点阅读