<!-- 1.文档结构 html-->
<!DOCTYPE html>
<!-- 2. 根元素:<html>-->
<html>
<!--根元素html = 头元素head + 主体元素body -->
<!-- 头元素是给浏览器和搜索引擎看的 -->
<head>
<meta charset="utf-8">
<title>文档结构与元素,标签,属性的类型</title>
</head>
<body>
<!--
1. 元素:链接
2. 标签: <a>
3. 属性: href target
-->
<a href="https://php.cn" target="_blank">php中文网</a>
<!-- 1.标签:双标签,单标签 -->
<h2>今年是2022年</h2>
<p>11月</p>
<!-- 双标签:描述文档自己的内容,如文本等 -->
<!-- 单标签:通用是引用外部资源的,如图像、CSS文档、视频等 -->
<img src="dog.jpg" alt="这是一个图片" />
<link rel="stylesheet" href="style.css" />
<script src="my.js"></script>
<video src="dog.mp4"></video>
<!-- script和video是单标签,但因为历史遗留问题,以后也不会修正了 -->
<input type="text" size="20" value="admin" required />
<!-- 布尔属性(true/false),如果required没有值,只要写上就是true,不写就是false -->
<!-- 自定义:前缀`data-`,用js中的`dataset`来处理 -->
<div data-name="admin" data-email="admin@qq.com">用户信息</div>
</body>
</html>
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!