part9: 来源: http://www.codecademy.com/zh/cou ... fb998b470000202dc8b Mid-lesson breather 中场休息 You've done an awesome job! Here's a quick summary of things we've learned: 你获得了令人惊奇的成就,这儿有一个关于我们学习过内容的概要: 01. HTML is used to give websites structure. 01. HTML用于编写网站。 02. We open HTML files using a browser, and the browser renders (shows us) the file. 02. 我们使用浏览器打开HTML文件,浏览器读取文件(显示给我们看)。 03. HTML files have a <head> and a <body> (just like you!) 03. HTML文件拥有“<head>(头)”与“<body>(身体)”(就像你一样)。 04. In the head, we have the <title> tags, and we use these to specify the webpage's name. 04. 在头部,我们有“<title>”标签,我们使用它为网页命名。 05. How to make headings and paragraphs. 05. 如何给予段落标题。 Instructions 操作指南 01. Add a title between the <title> tags. 01. 在“<title>”标签间添加标题 02. Create a <h3> sized heading in the body. Make your heading say anything you want! (Just don't forget to close it.) 02. 在“<body>”标签间写“<h3>”标题并写入你想要的内容(不要忘记配对)。 03. Create three paragraphs using <p> tags and fill them with content (e.g. about cars, your pet, favorite city to travel—whatever you like!) 03. 通过“<p>”标签写入段落并赋予其内容(例如:关于车的,你宠物的,最想去旅行的城市——任何你想的)。