0113作业
1. 写出html文档结构,并解释每个成员的功能与作用
<!DOCTYPE html>
<html lang="zh-CN"> <!-- html.lang 设置html语言 -->
<head> <!-- html头部标签 -->
<meta charset="UTF-8"> <!-- meta.charset 设置html的字符集 -->
<!-- 兼容模式: 多余的 -->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<!-- 视口设置,对手机浏览器作出兼容 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- 页面标题 -->
<title>Document</title>
</head>
<body><!-- body头部标签 -->
hello world!
</body>
</html>
2. 演示布局元素,重点是 tag+class
tag.class
3. 演示图文的语义化解决方案
目前div+class是主流,通过class可以保证页面有更大的弹性空间,通过id设死了不可以,语义化标签不推荐使用因为数量有限。
- 演示图像,链接与列表元素
<figure>
<!-- 图片 -->
<a href="">
<img src="https://img.php.cn/upload/course/000/000/068/6396fa6140e14800.png" alt="" />
</a>
<!-- 文字 -->
<figcaption>第二十二期_前端开发</figcaption>
</figure>