批改状态:合格
老师批语:
| 1 | 2 | 3 | 1 | 2 | 3 |
|---|---|---|---|---|---|
| 1 | 2 | 3 | 1 | 2 | 3 |
| 1 | 2 | 3 | 1 | 2 | 3 |
···
<!-- html浏览器标识,告诉浏览器这是个html文本 --><!DOCTYPE html><!-- lang是页面语言 --><html lang="en"><!-- 头部元素只有浏览器可见 --><head><meta charset="UTF-8"><!-- UTF8是默认字符集, utf8可表示世界上几乎所有已知语言字符 --><meta http-equiv="X-UA-Compatible" content="IE=edge"><!-- 浏览器兼容处理 --><meta name="viewport" content="width=device-width, initial-scale=1.0"><!-- 移动端适配 --><title>Document</title><!-- 页面标题 --><link rel="stylesheet" href="style.css"><!-- 外部css引入 --><script src="st.js"></script><!-- 外部JS脚本引入 --></head><body><!-- 正文内容写作 --><h1 style="color: aliceblue;">哈喽 你好</h1><!-- h1标签加颜色属性 --><img src="1.png" alt=""><!-- 外部图片引入 --></script></body></html>

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号