Blogger Information
Blog 5
fans 0
comment 0
visits 3955
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1208-插件安装和html标签
待伊散落尽芳华
Original
596 people have browsed it

1208-插件安装和html标签

1. VSCode插件安装

多装了几个插件


2. chrome插件安装

  • 谷歌助手 -> 不需要
  • 翻译插件 -> 网易有道词典
  • 简悦插件 -> 不需要
  • Page Rule -> QQ截图
  • Just Color Picker -> Pipette
  • Tompermonkey -> 不需要
  • Vue.js devtool -> 未安装

3. HTML标签

  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. <title>Document</title>
  7. </head>
  8. <body>
  9. <!--页而中的看到的内容都是由元素组成,元素是由标签描述,标签根据元素的类型分为双标签和
  10. 单标签每一个见素的特征,由属性来描述,描述的属性与到应始标签中-->
  11. <!-- H系列标签有利于SEO优化 -->
  12. <h1>H标签</h1>
  13. <h2>H标签</h2>
  14. <h3>H标签</h3>
  15. <h4>H标签</h4>
  16. <h5>H标签</h5>
  17. <h6>H标签</h6>
  18. <!-- 文本标签 -->
  19. <p>P标签</p>
  20. <!-- 链接标签 -->
  21. <!-- a标签实现了页面内跳转,站内跳转,站外跳转 -->
  22. <!-- 在当前页面打开网址 -->
  23. <a href="https://www.php.cn" target="_self">php中文网</a>
  24. <!-- 在新页面页面打开网址 -->
  25. <a href="https://www.php.cn" target="_blank">php中文网</a>
  26. <!-- 在指定的iframe中打开网址 -->
  27. <a href="https://www.php.cn" target="iframe">php中文网</a>
  28. <iframe name="iframe" srcdoc="请点击链接"></iframe>
  29. <!-- 锚点跳转 -->
  30. <a href="#footer">跳转底部</a>
  31. <!-- div通用容器标签 -->
  32. <div id="footer" style="margin-top:100px;">我是底部</div>
  33. <a href="#">回到顶部</a>
  34. <!-- imgtu图片标签,可以连接网址图片和本地图片 -->
  35. <!-- 图片大小默认会等比缩放 -->
  36. <img src="https://img.php.cn/upload/article/000/000/001/5fabba9a8557c153.jpg" alt="这是这是图片" width="300"/>
  37. <script>
  38. //js代码需置于script标签中
  39. </script>
  40. <!-- <?php
  41. php代码需置于PHP标签中
  42. ?> -->
  43. </body>
  44. </html>
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