part6: 来源: http://www.codecademy.com/zh/cou ... fb998b470000202dc8b Paragraphs and headings 段落与标题 We're definitely making good progress! We've learned when and why we use HTML. We've also learned how to: 我们取得了很大的进步,我们已经学会在何时以及为何使用HTML。我们还学习了如何去: a. Set up an HTML file with tags a. 通过标签建立HTML文件。 b. Title the webpage (in the <head>) b. 给网页标题(在“<head>”标签中) c. Create paragraphs (in the <body> with <p> tags) c. 创建段落(在“<body>”标签中使用“<p>”标签) The next step is to give our paragraphs headings using heading tags. Let's start with the <h1> tag. The content between this tag will be the biggest! 下一步给予我们的段落标题通过使用标题标签,让我们开始使用“<h1>”标签。内容一定要在标签之间。 Instructions 操作指南 01. In the body section, create a heading. To do this, create an <h1> tag. 01. 在网页体(“<body>”标签)中写入一个标题。先写一个“<h1>”。 02. Add content. 02. 添加内容。 03. Close the element with a closing tag </h1>. (Your content should now be between <h1> and </h1>.) 03. 通过使用“</h1>”关闭元素(你的内容应该在“<h1>”标签(“<h1>”与“</h1>”)间)。 04. Underneath the heading tags, create two paragraphs using <p> tags with whatever content you like. 04. 在“<h1>”标签下写入两个段落并在段落中写入任何你喜欢的内容。