html结构
<!-- 文档类型 -->
<!DOCTYPE html>
<!-- 根标签 包住所有 -->
<html lang="en">
<!-- 头部信息 用户看不见 -->
<head>
<!-- 字符 -->
<meta charset="UTF-8">
<!-- 移动端 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 网页标题 -->
<title>Document</title>
<style>
.asd {
width: 100px;
height: 100px;
background: red;
color: green;
font-size: 16px;
}
</style>
</head>
<!-- 网页内容 -->
<body>
<!-- 双标签 文本-->
<div class="asd">aaaa</div>
<a href='xx/aa.html'>按钮</a>
<!-- 但标签 引用资源-->
<img src='xx/aa.png'>
<hr>
</body>
</html>
html属性和值
<!-- class是属性 asd是值 -->
<div class="asd"></div>