diff --git a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/introduction-to-html5-elements.english.md b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/introduction-to-html5-elements.english.md index 8de304f401..1bf45e087a 100644 --- a/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/introduction-to-html5-elements.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/basic-html-and-html5/introduction-to-html5-elements.english.md @@ -7,16 +7,17 @@ videoUrl: 'https://scrimba.com/p/pVMPUv/c4Ep9Am' ## Description
-HTML5 introduces more descriptive HTML tags. These include header, footer, nav, video, article, section and others. -These tags make your HTML easier to read, and also help with Search Engine Optimization (SEO) and accessibility. -The main HTML5 tag helps search engines and other developers find the main content of your page. +HTML5 introduces more descriptive HTML tags. These include main, header, footer, nav, video, article, section and others. +These tags give a descriptive structure to your HTML, make your HTML easier to read, and help with Search Engine Optimization (SEO) and accessibility. The main HTML5 tag helps search engines and other developers find the main content of your page. +Example usage, a main element with two child elements nested inside it: +
<main>
  <h1>Hello World</h1>
  <p>Hello Paragraph</p>
</main>
Note: Many of the new HTML5 tags and their benefits are covered in the Applied Accessibility section.
## Instructions
Create a second p element after the existing p element with the following kitty ipsum text: Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched. -Wrap the paragraphs with an opening and closing main tag. +Then, create a main element and nest the two p elements inside the main element.
## Tests @@ -63,7 +64,11 @@ tests: ## Solution
-```js -// solution required +```html +

CatPhotoApp

+
+

Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.

+

Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.

+
```