.NET学习之html

1、<!--注释的内容-->   注释符

2、<h#>    各种标题字体1至6

3、<img   />  图片
       src       图片路径      (火狐不支持绝对路径)
       border    相框宽度px
       width     宽度px
       height    高度px
       alt       图片无法显示时,出现的文本
       title     光标移动到图片上,出现的文本

4、<hr/>  分割线  <br/>  换行

5、<font size="1~7" color="red" face="字体系列"></font>

6、&gt  大于号, &lt  小于号,&amp  &号, &nbsp; 空格

7、<b> 粗体,<i>意大利斜体,<tt>打字机文本,<u>下划线,

8、<sup> 上标,<sub>下标 <s>删除线的文本

9、<pre><code></code></pre>,保留空格和换行

10、<a href="网址" target="_ablank(_self)"> 打开网址

11、<a name="顶端"  href="#底端"></a>
       <a name="底端"  href="#顶端"></a>  页面内部跳转

12、<a name="位置"   href="2.html#位置2"></a>
       <a name="位置2"  href="1.html#位置"></a> 页面间跳转

13、<body  text="green"  link="链接的颜色"  alink="点击时的颜色 "  vlink="点击之后的颜色" ><a href="#">例如</a></body>

14、<ul type="sircle(square/disk)">  <li>aa</li>   <ul> 无序列表
       <ol type="1(a)">   <li>12</li>  </ol>                      有序列表
       <dl>  <dt>面向对象</dt>   <dd>封装</dd>    <dd>继承</dd>  </dl>自定义列表

15、<table border="1px" cellspaceing="0px(单元格与边框距离)" cellpading="0px(文本与单元格距离)">

         <tr(行)><td(列)>单元格内容(列)</td></tr>

        </table>    设计表格

16、<table> <tr><td colspan="2"(跨两列)></td></tr> </table>
       <table> <tr><td rowspan="2"(跨两行)></td></tr> </table>
      注: th,表示单元格标题,加粗
              table属性, bgcolor(表格背景颜色),border(边框宽度),bordercolor(边框颜色),width(像素或百分比)
              td属性,align(left,center),valign(top,middle,bottom),bcolor(背景颜色),nowrap(禁止单元格过长内容换行显示)
              caption,表格标题

17、<form action="提交的服务器" method=“get(set)”>
       名字:<input type="text" name="txtName"/><br/>密码<input type="password" name="txtPwd"/><br/><input type="submit" value="提交"/><br/><input type="reset"       value="清空"/><br/> <fieldset><legend>性别</legend><input type="radio" name="sex"/>男</br><input type="radio" name="sex"/>女</br></fieldset></form>
  注:get,以URL提交,以地址栏提交
      set,通过报文提交
 18、下拉菜单
        <select size=1>

           <optgrounp label="河南省" >

              <option>郑州</option>

           </optgrounp>

          </select>
        <input type="file"/>     浏览文件
        <input type="textarea" cols="20" rows="30">
  19、<frameset rows="30%,*" >

         <frame src="1.html" noresize="noresize"/>

         <frame src="2.html"/>

        </frameset> 页面布局

 

 

 

 

 

     

你可能感兴趣的:(.NET学习之html)