批改状态:合格
老师批语:写的不错,继续加油!
HTML(英文Hyper Text Markup Language的缩写)中文译为“超文本标签语言”,主要是通过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></head><body><p>php中文网</p></body></html>
注释:
1.<html>元素:<html>元素定义了整个HtML文档2.<head>元素:<head>标签用于存放:title,meta,base,style,script,link3,<title>元素:为html文档定义一个标题4,<body>元素:定义文档主体
<script>let girl={sum:function (a,b) {return a+b;}};</script>
<p id="p">php中文网</p><script>const el = document.getElementById('p');console.log(el);el.style.backgroundColor="red";</script>


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