Skip to content

Commit 7812791

Browse files
committed
Tweak display and language of structure page
1 parent 5d87c12 commit 7812791

File tree

1 file changed

+7
-11
lines changed

1 file changed

+7
-11
lines changed

sites/en/frontend/HTML_structure.step

+7-11
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,19 @@ The `<html>` encloses all the rest of your page and states "Here is my HTML!"
2828
<!-- Important invisible details will go here! -->
2929
</head>
3030
<body>
31-
Actual Visible Content
31+
Visible Content
3232
</body>
3333
</html>
3434
HTML
3535
message <<-MARKDOWN
3636

3737
### The Head
3838

39-
The `head` contains information that is not displayed in your browser. It has metadata tags that can tell a search engine or another program more about the file, like who wrote it or what keywords are relevant, such as:
39+
The `head` contains information that is not displayed in your browser. It has metadata (data about data) tags that can tell a search engine or another program more about the file, like who wrote it or what keywords are relevant, such as:
4040

41-
What language or character set you're using: `<meta charset="utf-8">`
42-
43-
What the page title should be: `<title>HTML!</title>`
44-
45-
What CSS and JavaScript files to include (and where they are):
46-
47-
`<link rel="stylesheet" href="style.css">`
41+
* What language or character set you're using: `<meta charset="utf-8">`
42+
* What the page title should be: `<title>HTML!</title>`
43+
* What CSS and JavaScript files to include (and where they are): `<link rel="stylesheet" href="style.css">`
4844

4945
MARKDOWN
5046
source_code :html, <<HTML
@@ -65,7 +61,7 @@ HTML
6561

6662
### The Body
6763

68-
The Body contains the actual content of your file, the things you'll want your users
64+
The body contains the actual content of your file, the things you'll want your users
6965
to be able to see, read, or interact with!
7066

7167
MARKDOWN
@@ -76,7 +72,7 @@ steps do
7672

7773
step do
7874
message <<-MARKDOWN
79-
Let's add the doctype, HTML, head, and body tags to your file. It should look something like this:
75+
Let's add the doctype, HTML, head, and body tags to your hello.html file. It should look something like this:
8076

8177
<img src='img/hello_structure.png'>
8278

0 commit comments

Comments
 (0)