Skip to content

Commit 65c873f

Browse files
Reorder HTML module and update letter challenge (mdn#40845)
* Reorder HTML module and update letter challenge * reorder module landing page list to match --------- Co-authored-by: Brian Smith <brian@smith.berlin>
1 parent 24db8cb commit 65c873f

File tree

11 files changed

+321
-40
lines changed

11 files changed

+321
-40
lines changed

files/en-us/learn_web_development/core/structuring_content/advanced_text_features/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ page-type: tutorial-chapter
55
sidebar: learnsidebar
66
---
77

8-
{{PreviousMenuNext("Learn_web_development/Core/Structuring_content/Structuring_documents", "Learn_web_development/Core/Structuring_content/Test_your_skills/Advanced_HTML_text", "Learn_web_development/Core/Structuring_content")}}
8+
{{PreviousMenuNext("Learn_web_development/Core/Structuring_content/Test_your_skills/HTML_text_basics", "Learn_web_development/Core/Structuring_content/Test_your_skills/Advanced_HTML_text", "Learn_web_development/Core/Structuring_content")}}
99

1010
There are many other elements in HTML for defining text semantics, which we didn't get to in the [Emphasis and importance](/en-US/docs/Learn_web_development/Core/Structuring_content/Emphasis_and_importance) article. The elements described in this article are less known, but still useful to know about (and this is still not a complete list by any means). Here you'll learn about marking up quotations, computer code and other related text, subscript and superscript, contact information, and more.
1111

@@ -401,4 +401,4 @@ That marks the end of our study of less-common HTML text semantics. What you hav
401401

402402
Next up, we'll give you some tests that you can use to check how well you've understood and retained the information we've provided on less-common HTML text features.
403403

404-
{{PreviousMenuNext("Learn_web_development/Core/Structuring_content/Structuring_documents", "Learn_web_development/Core/Structuring_content/Test_your_skills/Advanced_HTML_text", "Learn_web_development/Core/Structuring_content")}}
404+
{{PreviousMenuNext("Learn_web_development/Core/Structuring_content/Test_your_skills/HTML_text_basics", "Learn_web_development/Core/Structuring_content/Test_your_skills/Advanced_HTML_text", "Learn_web_development/Core/Structuring_content")}}

files/en-us/learn_web_development/core/structuring_content/creating_links/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ page-type: tutorial-chapter
55
sidebar: learnsidebar
66
---
77

8-
{{PreviousMenuNext("Learn_web_development/Core/Structuring_content/Test_your_skills/Advanced_HTML_text", "Learn_web_development/Core/Structuring_content/Test_your_skills/Links", "Learn_web_development/Core/Structuring_content")}}
8+
{{PreviousMenuNext("Learn_web_development/Core/Structuring_content/Structuring_documents", "Learn_web_development/Core/Structuring_content/Test_your_skills/Links", "Learn_web_development/Core/Structuring_content")}}
99

1010
Links (also known as hyperlinks) are really important — they are what makes the Web _a web_.
1111
This article shows the syntax required to make a link, and discusses link best practices.
@@ -470,4 +470,4 @@ Here are a few other sample `mailto` URLs:
470470

471471
That's it for links, for now anyway! You'll return to links later on in the course when you start to look at styling them. Next up, we'll give you some tests that you can use to check how well you've understood and retained the information we've provided on links.
472472

473-
{{PreviousMenuNext("Learn_web_development/Core/Structuring_content/Test_your_skills/Advanced_HTML_text", "Learn_web_development/Core/Structuring_content/Test_your_skills/Links", "Learn_web_development/Core/Structuring_content")}}
473+
{{PreviousMenuNext("Learn_web_development/Core/Structuring_content/Structuring_documents", "Learn_web_development/Core/Structuring_content/Test_your_skills/Links", "Learn_web_development/Core/Structuring_content")}}

files/en-us/learn_web_development/core/structuring_content/index.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,18 @@ Before starting this module, you don't need any previous HTML knowledge, but you
2929
- : The previous article looked at why semantics are important in HTML, and focused on headings and paragraphs. This article continues on the theme of semantics, looking at HTML elements that apply emphasis and importance to text (parallel to italics and bold text in print media).
3030
- [Lists](/en-US/docs/Learn_web_development/Core/Structuring_content/Lists)
3131
- : Lists are everywhere in life—from your shopping list to the list of directions you subconsciously follow to get to your house every day, to the lists of instructions you are following in these tutorials! It may not surprise you that HTML has a convenient set of elements that allows us to define different types of list. On the web, we have three types of lists: unordered, ordered, and description lists. This lesson shows you how to use the different types.
32-
- [Structuring documents](/en-US/docs/Learn_web_development/Core/Structuring_content/Structuring_documents)
33-
- : In addition to defining individual parts of your page (such as "a paragraph" or "an image"), HTML also boasts a number of block level elements used to define areas of your website (such as "the header", "the navigation menu", "the main content column"). This article looks into how to plan a basic website structure, and write the HTML to represent this structure.
3432
- [Advanced text features](/en-US/docs/Learn_web_development/Core/Structuring_content/Advanced_text_features)
3533
- : There are many other elements in HTML for defining text semantics, which we didn't get to in the [Emphasis and importance](/en-US/docs/Learn_web_development/Core/Structuring_content/Emphasis_and_importance) article. The elements described in this article are less known, but still useful to know about (and this is still not a complete list by any means). Here you'll learn about marking up quotations, computer code and other related text, subscript and superscript, contact information, and more.
36-
- [Creating links](/en-US/docs/Learn_web_development/Core/Structuring_content/Creating_links)
37-
- : Links (also known as hyperlinks) are really important — they are what makes the Web _a web_. This article shows the syntax required to make a link, and discusses link best practices.
34+
3835
- [Marking up a letter](/en-US/docs/Learn_web_development/Core/Structuring_content/Marking_up_a_letter) <sup>Challenge</sup>
3936
- : We all learn to write a letter sooner or later; it is also a useful example to test our text formatting skills. In this challenge, you'll have a letter to mark up as a test for your HTML text formatting skills, as well as hyperlinks and proper use of the HTML `<head>` element.
37+
38+
- [Structuring documents](/en-US/docs/Learn_web_development/Core/Structuring_content/Structuring_documents)
39+
- : In addition to defining individual parts of your page (such as "a paragraph" or "an image"), HTML also boasts a number of block level elements used to define areas of your website (such as "the header", "the navigation menu", "the main content column"). This article looks into how to plan a basic website structure, and write the HTML to represent this structure.
40+
41+
- [Creating links](/en-US/docs/Learn_web_development/Core/Structuring_content/Creating_links)
42+
- : Links (also known as hyperlinks) are really important — they are what makes the Web _a web_. This article shows the syntax required to make a link, and discusses link best practices.
43+
4044
- [Structuring a page of content](/en-US/docs/Learn_web_development/Core/Structuring_content/Structuring_a_page_of_content) <sup>Challenge</sup>
4145
- : Structuring a page of content ready for laying it out using CSS is a very important skill to master, so in this challenge you'll be tested on your ability to think about how a page might end up looking, and choose appropriate structural semantics to build a layout on top of.
4246
- [HTML images](/en-US/docs/Learn_web_development/Core/Structuring_content/HTML_images)

0 commit comments

Comments
 (0)