常见的标签
有序列表:type属性用来指定有序列表的序列类型
                   1表示序列使用阿拉伯数字
                  a /A使用小写/大写字母做序号
                   i/I使用小写/大写罗马数字做序号
无序列表:type列表前序号类型
(square正方形    disc圆点 默认值   circle圆)
定义列表:
包含
表格
表格由
标签来定义
<tr>表示行   
 <td>表示列/单元
   <th>表头标签中的内容默认会加粗居中显示  
<cellspacing>表示单元格之间的空隙    
<cellpadding>定义单元格内间距  
<thead>定义表格的页眉
<tbody>定义表格的主体
<tfoot>定义表格的页脚
单元格的合并
<colspan>合并列
<rowspan>合并行
表单
<form>用于为用户创建HTML表单
    文本框 <input type=text属性定义输入框的类型  <br>换行
    密码框<input type="password"/> <br/>
    颜色<input type=“color”/>  <br/>
    单选框<input type=“radio”  name="gender"/>男
         <input type=“radio”  name="gender" checked="checked"/>女
         <br/>
    多选框:<input type="checkbox" name="hobby"/>                                            <input type="checkbox" name="hobby"/>                                             <input type="checkbox" name="hobby" checked="checked"/>                                                            
下拉列表:<select>                                                                          <option>青海省</option>                                                           <option selected="selected">西安省</option>                                       <option>桑德省</option>                                                            </select>  
文本域:
            <input type="button" value="普通按钮" />
            <input type="submit" value="提交按钮" />    
            <input type="reset" value="重置按钮" />
    
    <button></button>表示按钮
    
心得体会
    今天学习了标签,表格,单元格的合并,文本域,下拉列表以及在网站添加照片,视频以及图表和网址的转换,内容比较多,第一次接触压力也稍稍的有点大,内容虽然在课上听懂了,但做练习的时候还是有点吃力,尤其是单元格的合并和添加视频,课余时间也练习了会消化了今天所学的知识,希望明天也能认真听课及时完成老师布置的课后练习。
    
    
    
  
  
  
  
        
  
  
 
评论留言