You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sites/en/frontend/HTML_structure.step
+7-11
Original file line number
Diff line number
Diff line change
@@ -28,23 +28,19 @@ The `<html>` encloses all the rest of your page and states "Here is my HTML!"
28
28
<!-- Important invisible details will go here! -->
29
29
</head>
30
30
<body>
31
-
Actual Visible Content
31
+
Visible Content
32
32
</body>
33
33
</html>
34
34
HTML
35
35
message <<-MARKDOWN
36
36
37
37
### The Head
38
38
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:
40
40
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">`
48
44
49
45
MARKDOWN
50
46
source_code :html, <<HTML
@@ -65,7 +61,7 @@ HTML
65
61
66
62
### The Body
67
63
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
69
65
to be able to see, read, or interact with!
70
66
71
67
MARKDOWN
@@ -76,7 +72,7 @@ steps do
76
72
77
73
step do
78
74
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:
0 commit comments