html

8

banner footer

7

内嵌网页 <iframe name=aa> <a href=URL target=aa>

    {% if articles %}
    {% for article in articles %}
    <h1><a href={{ article.filepath+article.filename }}>{{ article.filename }}</a></h1>
    <iframe src={{ article.filepath+article.filename }}
        style="width:100%;height:400px;" frameborder=0
        scrolling=no></iframe>
    {% endfor %}
    {% endif %}

6

谷歌语音识别 <input type="text" x-webkit-speech /> 加上js

5

<a href="mailto:adou@gmail.com?subject=justtest">发送邮件</a> matito:adou@gmail.com?subject=Feedback&body=how%20are%20you! <a href="self#mark1">mark1</a> <a name="mark1"> url www.google.com#section2

特殊字符

&copy; &#169; 版权 &gt; 大于 &lt; 小于 &amp; & &quot; " &reg; 圈R &trade; 商标TM &nbsp; 空格

4

<p>段落</p>
换行 <nobr>不换行</nobr> <blockquote>块引用</blockquote>

中心对齐
分区
<blink>闪烁</blink> <img src="dog" alt="这是小狗" width="100px" border="" /> <th clospan rowspan> <marquee direction="right">Running...</marquee> <font color=red>字体颜色...</font> <dl><dt></dt><dd></dd></dl> <ol></ol><ul></ul><li></li> <pre></pre> 同样的回车空格效果 <h1></h1>...<h6></h6> <tt>打印字风格</tt> <cite>引用</cite> 强调 加重

3

bgcolor=red topmargin=0px bottommargin=0px align= left , center , right

2

<frameset cols="%30," rows="%60,"> <frame src="http://*.com" noresize> ... </frameset>

<a href="http://.com" target>sohu</a>

1

get post

<form action="**" method="get">

<input type="" name=** />
type >> text password hidden

checkbox radio wubmit reset image

表格示例:

<meta charset="utf-8">

<br>
姓名 <input type="text" name="username" /><br>
密码 <input type="text" name="psw" /><br>
<input type="submit" name="登陆" />
<input type="reset" name="重置" />

<br>
<input type="checkbox" name="v1" />西瓜<br>
<input type="checkbox" name="v1" />苹果<br>

<br>
<input type="radio" name="sex" />男<br>
<input type="radio" name="sex" />女<br>

<br>
<select name="biradd" size=5 multiple>
    <option value="">---请选择---</option>
    <option value="bj">北京</option>
    <option value="sh">上海</option>
    <option value="cq">重庆</option>
</select>

<br>wrap=off不自动换行<br>
<textarea cols=80 rows=20 wrap=off>请在这里输入...</textarea>

<br>
<input type="file" name="myfile" />请选择文件