freecodecamp 第四课

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标签的注释。

  • 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-->
  • 确保删除所有的注释标记。

Hello World

我家的猫咪

Hello Paragraph

序号 English 中文
1 convenient adj. 方便的
2 inactive adj. 不活跃的;懈怠的;闲置的
3 entirely adv. 完全地;彻底地
4 i.e. adv.也就是

你可能感兴趣的:(freecodecamp 第四课)