01 基本结构和文本标签

  1. <!--
  2. 基本结构
  3. -->
  4. <!DOCTYPE html>
  5. <!--文档类型-->
  6. <html lang="zh">
  7. <!--语言-->
  8. <head>
  9. <meta charset="UTF-8">
  10. <!--编码-->
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  12. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  13. <title>Document</title>
  14. <!--标题-->
  15. </head>
  16. <body>
  17. <p>段落</p>
  18. <br>换行<br>
  19. <h1>标题1</h1>
  20. <h2>标题2</h2>
  21. <h3>标题3</h3>
  22. <h4>标题4</h4>
  23. <h5>标题5</h5>
  24. <h6>标题6</h6>
  25. <hr>水平线<hr>
  26. <!--文本格式化标签-->
  27. <strong>加粗</strong> &nbsp;&nbsp;&nbsp;<!--空格-->
  28. <em>斜体</em> &nbsp;&nbsp;&nbsp;
  29. <del>删除线</del> &nbsp;&nbsp;&nbsp;
  30. <span>与CSS结合</span>
  31. </body>
  32. </html>

02 图片,超链接,图片映射

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <img id ="h" src="#" alt="图片载入出错时显示的文字" title="图片获得焦点时显示的文字"/>
  11. <br>
  12. 图片格式:
  13. jpg 有损压缩,不支持透明
  14. png 无损压缩,支持透明
  15. gif 动图
  16. <hr>
  17. <a href="#h">显示文本
  18. <img src="ss#" alt = "超链接里可以嵌套图片"/>
  19. </a>
  20. <!--
  21. #h 跳转地址
  22. target = "_blank" 跳转方式
  23. -->
  24. <hr>
  25. <!--图片映射-->
  26. <img src="#" alt="" usemap="#haha"/>
  27. <map name="haha">
  28. <area shape="circle" coords="233,456,50" href="#">
  29. <!--
  30. area 划分区域
  31. shape 形状
  32. 圆形 circle
  33. 矩形 rect
  34. 多边形 poly
  35. -->
  36. </map>
  37. </body>
  38. </html>

03 列表,表格

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <!-------------------------------列表----------------------------------------->
  11. 无序列表
  12. <ul>
  13. <li>aaa</li>
  14. <li>bbb</li>
  15. </ul>
  16. 有序列表
  17. <ol>
  18. <li>111</li>
  19. <li>222</li>
  20. </ol>
  21. 自定义列表
  22. <dl>
  23. <dt>标题</dt>
  24. <dd></dd>
  25. <dd></dd>
  26. </dl>
  27. <!--------------------------------表格----------------------------------------->
  28. <table border="1px solid #fff">
  29. <th>title</th>
  30. <tr>
  31. <td colspan="2">111</td><!--合并行-->
  32. <td rowspan="2">222</td><!--合并列-->
  33. </tr>
  34. <tr>
  35. <td>aaa</td>
  36. <td>bbb</td>
  37. </tr>
  38. </table>
  39. </body>
  40. </html>

04 表单

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <form action="#" method="GET">
  11. 用户名:<input type="text"/>
  12. 密码:<input type="password"/><br>
  13. <!--单选框-->
  14. 性别:
  15. <input type="radio" name="sex">
  16. <input type="radio" name="sex"><br>
  17. <!--复选框-->
  18. 兴趣:
  19. <input type="checkbox" name="ckb" value="fan">吃饭饭
  20. <input type="checkbox" name="ckb" value="jiao">睡觉觉
  21. <input type="checkbox" name="ckb" value="dou">打豆豆<br>
  22. <!--下拉框-->
  23. 城市:
  24. <select name = "city">
  25. <option value="shanghai">上海</option>
  26. <option value="beijing">北京</option>
  27. </select>
  28. <input type="submit" value = "提交">
  29. </form>
  30. </body>
  31. </html>

05 布局

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <!--DIV布局-->
  11. <div style="background-color:aqua">哈哈</div>
  12. <div style="background-color:blue">呵呵</div>
  13. <div style="background-color:crimson">嗯嗯</div>
  14. <!--iframe-->
  15. <iframe src="./04 表单.html"></iframe>
  16. <iframe src="./05 布局.html"></iframe>
  17. </body>
  18. </html>