美文网首页
freecodecamp 第四课

freecodecamp 第四课

作者: 涂魄 | 来源:发表于2017-03-17 16:30 被阅读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标签的注释。

  • 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.也就是

相关文章

网友评论

      本文标题:freecodecamp 第四课

      本文链接:https://www.haomeiwen.com/subject/mtlenttx.html