Blogger Information
Blog 13
fans 0
comment 0
visits 5932
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
0319作业
 
Original
465 people have browsed it

0319 作业

0319 直播共学习了 7 大块 ###第一块-元素

页面的布局都是由“块”堆砌的
块元素分为行内元素与块及元素,最直观差异就是默认 100%的宽度

  1. <div><span>行内块元素</span></div>

常用块元素标签 div span

可替换与不可替换

元素又分为可替换标签与不可替换,直观表现为:内容是否可被系统更改,如引用的图片,图
片里的位图信息不可被代码控制,该类元素为不可替换元素,反之如 p 标签等,内容可以被自定义或更改,属于可替换元素

元素的通用属性

id class style
id 只能存在一个值,如 div1 id=1 那么 div2 的 id 必须 ≠1

元素的预定义的类型

src href type

第二块-语义化

H5 的语义化特性提高了 html 代码的人类+蜘蛛的可读性,这使得代码更容易被看懂并且有更优秀的收录

所含标签

header nav main article section aside footer

翻译对照:
header-头部
nav=导航
main=主要区块
article=文章
section=区块
aside=旁白 通常在侧边栏或者标注框
footer=页脚

第三块-Text element

H5 的语义化特性提高了 html 代码的人类+蜘蛛的可读性,这使得代码更容易被看懂并且有更优秀的收录

所含标签

常用 span p pre br hr
声明 time address sub sup small abbr code progress
强调 strong em mark del
引用 blockquetoe

第四块-链接

  1. 链接的标签为 <a href="se.ee" download="222.exe">下周</a> 属性有: download
  2. href:mailto-tel-url target:_self_blank_parent_top_name doan download:url

第五块-列表

列表分为有序列表、无序列表、自定义列表
有序列表的标签为 ol 无序列表为 ul 自定义列表为 dt
有序与无序列表的列表项标签为 li
自定义列表的列表项为 dt>dd

<hr>

  1. <ul>
  2. <li>无序列表</li>
  3. <li>无序列表</li>
  4. <li>无序列表</li>
  5. <li>无序列表</li>
  6. <li>无序列表</li>
  7. </ul>

<ul>
<li>无序列表</li>
<li>无序列表</li>
<li>无序列表</li>
<li>无序列表</li>
<li>无序列表</li>
</ul>

<hr>

  1. <ol>
  2. <li>无序列表</li>
  3. <li>无序列表</li>
  4. <li>无序列表</li>
  5. <li>无序列表</li>
  6. <li>无序列表</li>
  7. </ol>

<ol>
<li>无序列表</li>
<li>无序列表</li>
<li>无序列表</li>
<li>无序列表</li>
<li>无序列表</li>
</ol>

<hr>

<dl>
<dt>标题</dt>
<dd>内容</dd>
<dd>内容</dd>
<dd>内容</dd>
<dd>内容</dd>
<dt>标题</dt>
<dd>内容</dd>
<dd>内容</dd>
<dd>内容</dd>
<dd>内容</dd>
<dt>标题</dt>
<dd>内容</dd>
<dd>内容</dd>
<dd>内容</dd>
<dd>内容</dd>
<dt>标题</dt>
<dd>内容</dd>
<dd>内容</dd>
<dd>内容</dd>
</dl>

  1. <dl>
  2. <dt>标题</dt>
  3. <dd>内容</dd>
  4. <dd>内容</dd>
  5. <dd>内容</dd>
  6. <dd>内容</dd>
  7. <dt>标题</dt>
  8. <dd>内容</dd>
  9. <dd>内容</dd>
  10. <dd>内容</dd>
  11. <dd>内容</dd>
  12. <dt>标题</dt>
  13. <dd>内容</dd>
  14. <dd>内容</dd>
  15. <dd>内容</dd>
  16. <dd>内容</dd>
  17. <dt>标题</dt>
  18. <dd>内容</dd>
  19. <dd>内容</dd>
  20. <dd>内容</dd>
  21. </dl>
  22. ```

第六块-img

img 标签是用来加载图片资源的
属性 src slt width-height

  1. <img src="https://asdsad.com/s.jpg" alt="为空显示" />

第七块-table

table 的基本结构
Table>tr>td
声明>行>列
table 的基本属性:caption(标题) tr(行) td(列) th(表粗行)cellcpascing(块与块间距)cellpadding(内容间距) aling(对齐) bgcolor(背景色) width(宽度) h 高度

colspan 行合并
rowspan 列合并

  1. <table
  2. border="1"
  3. cellspacing="0"
  4. cellpadding="10"
  5. style="text-align: center"
  6. align="center"
  7. >
  8. <caption style="margin-bottom: 10px">
  9. <h3>合肥市南门小学五(三)班课程表</h3>
  10. </caption>
  11. <tr bgcolor="#e0fefd" style="font-weight: 9000">
  12. <th>时间</th>
  13. <th>星期一</th>
  14. <th>星期二</th>
  15. <th>星期三</th>
  16. <th>星期四</th>
  17. <th>星期五</th>
  18. </tr>
  19. <tr>
  20. <td rowspan="4">上午</td>
  21. </tr>
  22. <tr>
  23. <td>语文</td>
  24. <td>数学</td>
  25. <td>音乐</td>
  26. <td>体育</td>
  27. <td>英语</td>
  28. </tr>
  29. <tr>
  30. <td>语文</td>
  31. <td>数学</td>
  32. <td>音乐</td>
  33. <td>体育</td>
  34. <td>英语</td>
  35. </tr>
  36. <tr>
  37. <td>语文</td>
  38. <td>数学</td>
  39. <td>音乐</td>
  40. <td>体育</td>
  41. <td>英语</td>
  42. </tr>
  43. <tr>
  44. <td colspan="6" bgcolor="gray" style="color: white">中午休息</td>
  45. </tr>
  46. <tr>
  47. <td rowspan="2">学科</td>
  48. <td>语文</td>
  49. <td>数学</td>
  50. <td>音乐</td>
  51. <td>体育</td>
  52. <td>英语</td>
  53. </tr>
  54. <tr>
  55. <td>语文</td>
  56. <td>数学</td>
  57. <td>音乐</td>
  58. <td>体育</td>
  59. <td>英语</td>
  60. </tr>
  61. <tr bgcolor="#90ec8d">
  62. <td>备注:</td>
  63. <td colspan="5" style="text-align: left">
  64. 每天下午16-17点放学,写完作业回家
  65. </td>
  66. </tr>
  67. </table>

第八块-form

form 表<a href="https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/form">https://developer.mozilla.org/zh-CN/docs/Web/HTML/Element/form</a>

  1. <form action="#" method="POST">
  2. <label for="zhanghao">账号</label>
  3. <input type="text" id="zhanghao" />
  4. <!-- lable的for值靠input的id定位与关联 -->
  5. <input type="checkbox" name="Week" id="xq1" value="xq" />
  6. <label for="xq1">星期一</label>
  7. <input type="checkbox" name="Week" id="xq2" value="xq" />星期二
  8. <input type="checkbox" name="Week" id="xq3" value="xq" />星期三
  9. <input type="checkbox" name="Week" id="xq4" value="xq" />星期四
  10. <input type="checkbox" name="Week" id="xq5" value="xq" />星期五
  11. <input type="submit" value="提交" />
  12. </form>
  13. ```
Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post