From b0bd3f5549b4137a26b7edbca195c31431869948 Mon Sep 17 00:00:00 2001 From: "Nicholas Carrigan (he/him)" Date: Wed, 3 Feb 2021 08:58:33 -0800 Subject: [PATCH] fix(learn): abstract comments from code (#40869) --- .../declare-the-doctype-of-an-html-document.md | 4 ++-- .../define-the-head-and-body-of-an-html-document.md | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/declare-the-doctype-of-an-html-document.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/declare-the-doctype-of-an-html-document.md index edbc65725e..cab6e5cef3 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/declare-the-doctype-of-an-html-document.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/declare-the-doctype-of-an-html-document.md @@ -19,12 +19,12 @@ The `!` and uppercase `DOCTYPE` is important, especially for older browsers. The Next, the rest of your HTML code needs to be wrapped in `html` tags. The opening `` goes directly below the `` line, and the closing `` goes at the end of the page. -Here's an example of the page structure: +Here's an example of the page structure. Your HTML code would go in the space between the two `html` tags. ```html - + ``` diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/define-the-head-and-body-of-an-html-document.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/define-the-head-and-body-of-an-html-document.md index 788fe75703..797bff9043 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/define-the-head-and-body-of-an-html-document.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/define-the-head-and-body-of-an-html-document.md @@ -19,10 +19,11 @@ Here's an example of a page's layout: - + - +
+
```