freecodecamp 第四课

2017-03-17  本文已影响0人  涂魄

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.
删除h1h2p标签的注释。

<!--
<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.也就是
上一篇 下一篇

猜你喜欢

热点阅读