Conversation
Step 3: Add HTML document structureGreat job opening a pull request @deletehacker! I've gone ahead and closed your previous issue. This pull request contains some content, but it doesn't have any of the HTML structure that tells a browser how to structure the content. All pages created with HTML must contain tags that identify it as such. The tags look like this: <html>
<body>
The HTML content goes here.
</body>
</html>You may notice two copies of the HTML tag, and two copies of the body tag. We call these the opening and closing tags. Let's look at the same code, but include a little explanation.
In HTML, spacing doesn't really matter. We've added some tabs to make the code easier to see, but the web browser will ignore the extra spacing. Now that you understand the building blocks of HTML, let's add HTML to the ⌨️ Activity: Add the
|
|
1234 |
| @@ -0,0 +1 @@ | |||
| Hello there, awesome person! No newline at end of file | |||
There was a problem hiding this comment.
< html >
< body >
HTML内容就在这里。
</ body >
</ html >
No description provided.