Uncomment HTML#
删除HTML中的注释#
Commenting is a way that you can leave comments within your code without affecting the code itself.
注释并不会影响代码的运行。
Commenting is also a convenient1 way to make code inactive2 without having to delete it entirely3.
调试代码时,不用删除代码,只需将代码改成注释,便可让该代码不起作用。
You can start a comment with . 注释的格式:
。
Uncomment your h1
, h2
and p
elements.
删除h1
、h2
和 p
标签的注释。
- Make your
h1
element visible on your page by uncommenting it. - 删除注释使
h1
标签可见。 - Make your
h2
element visible on your page by uncommenting it. - 删除注释使
h2
标签可见。 - Make your
p
element visible on your page by uncommenting it. - 删除注释使
p
标签可见。 - Be sure to delete all trailing comment tags i.e.4
-->
- 确保删除所有的注释标记。
<!--
<h1>Hello World</h1>
<h2>我家的猫咪</h2>
<p>Hello Paragraph</p>
-->
<h1>Hello World</h1>
<h2>我家的猫咪</h2>
<p>Hello Paragraph</p>
序号 | English | 中文 |
---|---|---|
1 | convenient | adj. 方便的 |
2 | inactive | adj. 不活跃的;懈怠的;闲置的 |
3 | entirely | adv. 完全地;彻底地 |
4 | i.e. | adv.也就是 |