记录一下 HTML的学习

思维导图

 HTML 学习

 

 

 

1 <html><!-- html的标签,代表html文档的结束和开始 -->
2 <head><!-- 头部分,设置网页属性,可以设置标题 -->
3 <title>hello world </title><!-- 标题 -->
4 </head>
5     <body><!-- 正文部分,放置想要在页面上显示的内容 -->
6         hello world!
7     </body>
8 </html>
01helloworld

相关文章:

  • 2021-06-30
  • 2021-12-31
  • 2022-12-23
猜你喜欢
  • 2021-12-10
  • 2021-12-19
相关资源
相似解决方案