标签:html
<!--html常用元素--> <html> <head> <meta http-equiv="content-type" content="text/html;charset=UTF-8"/> <title>无标题</title> </head> <body> <table width="200" border="1"> <tr> <td bgcolor="#FF0000"> First </td> <!--行标记--> <td bgcolor="#FFFF00"> Second </td> </tr> </table> </body> </html>
First | Second |
<!--html常用元素1--> <html> <head> <meta http-equiv="content-type" content="text/html;charset=UTF-8"/> <meta name="keywords" content="关键字" /> <meta name="description" content="描述"/> <meta http-equiv="refresh" content="1;URL=http://www.baidu.com"/> <title> 测试 2 </title> <body> waiting...(pre) <pre>3,2,1...</pre> <h1>h1</h1> <h1 style="font-size:6px">h1</h1> <span>1</span> <span>2</span> <pre><b>bbb</b></pre> <pre>bbb</pre> <h2>h2</h2> <h3>h3</h3> <h4>h4</h4> <h5>h5</h5> <h6>h6</h6> 空*10 格 空 格 © 版权 ® 商标 </body> </html>
waiting...(pre)
3,2,1...
bbb
bbb
Html之常用元素----ShinePans,布布扣,bubuko.com
标签:html
原文地址:http://blog.csdn.net/shinepan/article/details/38564409