Blogger Information
Blog 3
fans 0
comment 2
visits 1671
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
11月9日 走进HTML的世界
织网虾
Original
568 people have browsed it

一、走进HTML的世界

1、html文件名的规范

  • 可以以中文命名,但是不允许使用中文。

  • 不允许使用特殊字符。

  • HTML文件名推荐使用小写。

  • 创建完HTML文件后依然是文本文件格式,那么需要将系统中隐藏已知文件类型扩展名勾选掉

2、HTML主体结构

  1. <!DOCTYPE html> <!-- 声明头 -->
  2. <html lang="en">
  3. <head>
  4. <!--头标签-->
  5. <meta charset="UTF-8"> <!--编码-->
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  8. <title>网页标题</title>
  9. </head>
  10. <body>
  11. <!-- body区,体标签 -->
  12. </body>
  13. </html>

3、head标签中常用的标签

  • 设置页面字符串 <title>这是网页标题</title>

  • 设置页面字符集 <meta charset="utf-8" />

  • 设置页面字符集 <meta http-equiv="content-type" content="text/html;charset=utf-8" />

  • 设置5秒后自动跳转到php 中文网 <meta http-equiv="refresh" content="5;url=https://www.php.cn" />

  • 设置浏览器10秒刷新一次 <meta http-equiv="refresh" content="10" />

  • 设置网站关键字,多个关键字之间用英文状态下的逗号分割 <meta name="keywords" content="关键字1,关键字2"/>

  • 设置网站的描述,<meta name="description" content="描述的内容" />

  • 设置网页icon <link rel="icon" type="" href="img/ico.png"/>

  • 导入外部css样式 <link rel="stylesheet" type="text/css" href="css/index.css" />

  • 网页标题 <title>这是页面标题</title>

  • 设置内部样式

    1. <style>
    2. /* 当前网页的样式,优先级比导入的css文件样式高 */
    3. p{
    4. color:aquamarine
    5. }
    6. </style>
  • js代码块

    1. <script>
    2. //js脚本
    3. alert('我是弹出的js脚本');
    4. </script>
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8"> <!-- 页面编码、字符集 -->
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- 移动端视口适配 -->
  7. <meta http-equiv="refresh" content="5;url=http://www.php.cn" /> <!-- 5秒种自动跳转到php中文网 -->
  8. <meta http-equiv="refresh" content="10" /> <!-- 10秒种自动刷新网页 -->
  9. <meta name="keywords" content="php,大前端"/> <!-- seo用的搜索关键词 -->
  10. <meta name="description" content="网页描述" /> <!-- seo页面描述 -->
  11. <link rel="icon" type="" href="img/ico.png"/> <!-- 设置网页icon -->
  12. <link rel="stylesheet" type="text/css" href="css/index.css" /> <!-- 导入外部css样式 -->
  13. <title>这是页面标题</title> <!-- 网页标题 -->
  14. <style>
  15. /* 当前网页的样式,优先级比导入的css文件样式高 */
  16. p{
  17. color:aquamarine
  18. }
  19. </style>
  20. <script>
  21. //js脚本
  22. alert('我是弹出的js脚本');
  23. </script>
  24. </head>
  25. <body>
  26. <p>hello php中文网</p>
  27. </body>
  28. </html>

4、body标签中常用的标签

4.1 文本与文本格式标签
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8"> <!-- 页面编码、字符集 -->
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- 移动端视口适配 -->
  7. <meta http-equiv="refresh" content="10" /> <!-- 10秒种自动刷新网页 -->
  8. <meta name="keywords" content="php,大前端"/> <!-- seo用的搜索关键词 -->
  9. <meta name="description" content="网页描述" /> <!-- seo页面描述 -->
  10. <link rel="icon" type="" href="img/ico.png"/> <!-- 设置网页icon -->
  11. <link rel="stylesheet" type="text/css" href="css/index.css" /> <!-- 导入外部css样式 -->
  12. <title>这是页面标题</title> <!-- 网页标题 -->
  13. <style>
  14. /* 当前网页的样式,优先级比导入的css文件样式高 */
  15. p{
  16. color:aquamarine
  17. }
  18. pre{
  19. border:1px solid #ccc
  20. }
  21. </style>
  22. <script>
  23. //js脚本
  24. alert('我是弹出的js脚本');
  25. </script>
  26. </head>
  27. <body>
  28. <p>我是文章的一个段落</p> <!--段落标签-->
  29. <b>我是加粗的内容</b> <!--加粗-->
  30. <strong>强调强调</strong> <!--强调某段文本-->
  31. <em>我是em,我长这样哦</em> <!--强调某段文本-->
  32. <i>我是歪的字哦,相当于font: italic;</i> <!--斜体-->
  33. <br/> <!--单标签不可以换行-->
  34. <hr /> <!--水平线-->
  35. <u>我是下划线</u> <!--下划线标签-->
  36. <del>删除线</del> <!--删除线标签-->
  37. <hn>h族标题</hn> <!--h族标题标签-->
  38. <bdo></bdo> <!--覆盖默认的文本方向-->
  39. 2<sub>3</sub> <!--下标文本-->
  40. 3<sup>2</sup> <!--上标文本-->
  41. <details>
  42. <summary>标题</summary>
  43. 我们是中华人民共和国优秀程序员
  44. </details>
  45. <dialog open>这是打开的对话窗口</dialog> <!--定义对话框或窗口-->
  46. <pre>
  47. alert('我是弹出的js脚本');
  48. </pre>
  49. <figure>
  50. <p>php中文网</p>
  51. <img src="https://img.php.cn/upload/article/000/000/001/5fabba9a8557c153.jpg" width="350" height="234" />
  52. </figure>
  53. <mark></mark> <!--标记文本-->
  54. <mark></mark>
  55. 定义带有记号的文本,它会给你要突出显示的文本下加个背景色。
  56. 如:<p>你是<mark>大长腿</mark>吗?</p>
  57. </body>
  58. </html>

4.2 列表标签
  1. <ul>
  2. <li>你好</li>
  3. <li>我很好</li>
  4. <li>你不好</li>
  5. <li>我也要很好</li>
  6. </ul>
  7. <!--有序-->
  8. <ol>
  9. <li>Coffee</li>
  10. <li>Tea</li>
  11. <li>Milk</li>
  12. </ol>
  13. <dl>
  14. <dt>标题</dt>
  15. <dd>详情</dd>
  16. </dl>
4.3 多媒体标签
  1. <img usemap="#planetmap" alt="Planets"src="https://img.php.cn/upload/article/000/000/001/5fabba9a8557c153.jpg" />
  2. <video controls="controls" src="https://v.cztvcloud.com//shixian_new/yuhang/vod/2021/11/09/e36343c136d3407ba63d4105d130b2dc/7459b422cf9f46c6b5edeb7698298cbd_H264_1500K_MP4.mp4">
  3. 您的设备不支持
  4. </video>
  5. 图片热点链接,就是在图上链接不同的内容,现在很少用了
  6. <map name="planetmap" id="planetmap">
  7. <area shape="circle" coords="180,139,14" href ="" alt="Venus" />
  8. <area shape="circle" coords="129,161,10" href ="" alt="Mercury" />
  9. <area shape="rect" coords="0,0,110,260" href ="" alt="Sun" />
  10. </map>
  11. 早期的flash标签
  12. <embed />
  13. 标签标示任务的进度
  14. <progress value="22" max="100"></progress>
  15. 使用 meter 元素来度量给定范围(gauge)内的数据:
  16. <meter value="0.6">60%</meter>
  17. <audio controls>
  18. <source src="horse.ogg" type="audio/ogg">
  19. <source src="horse.mp3" type="audio/mpeg">
  20. Your browser does not support the audio element.
  21. </audio>

Correcting teacher:PHPzPHPz

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