From 125635bdf350461032ca22a60b2c011c7090590e Mon Sep 17 00:00:00 2001 From: Laura Godinez Date: Mon, 22 Jun 2020 12:06:32 -0400 Subject: [PATCH 1/7] finished edits on 'syntax_template.html' --- templates/syntax_template.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/syntax_template.html b/templates/syntax_template.html index 6862e5a..558b397 100644 --- a/templates/syntax_template.html +++ b/templates/syntax_template.html @@ -1 +1 @@ -HTML uses tags to identify page content. This text, for example, is a paragraph. \ No newline at end of file +HTML uses tags to identify page content. This text, for example, is a paragraph. \ No newline at end of file From feadcd96f070598969ab5bdb7d5b3ca14a838eb0 Mon Sep 17 00:00:00 2001 From: Laura Godinez Date: Mon, 22 Jun 2020 12:13:10 -0400 Subject: [PATCH 2/7] finished edits on 'body_template.html' --- templates/body_template.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/templates/body_template.html b/templates/body_template.html index 837c4bb..0cbdb1d 100644 --- a/templates/body_template.html +++ b/templates/body_template.html @@ -6,7 +6,8 @@ Basic HTML document - Page content - The main page content appears inside the body tag. HTML contains several elements that allow you to properly structure and format your content, which we'll cover later. + Page content + + The main page content appears inside the body tag. HTML contains several elements that allow you to properly structure and format your content, which we'll cover later. \ No newline at end of file From 5335b279006ed37a9ed1ef98b380edaeb98cf639 Mon Sep 17 00:00:00 2001 From: Laura Godinez Date: Mon, 22 Jun 2020 12:22:29 -0400 Subject: [PATCH 3/7] finished edits on 'models_template.html' --- templates/models_template.html | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/templates/models_template.html b/templates/models_template.html index 2f6ec67..c0fd18c 100644 --- a/templates/models_template.html +++ b/templates/models_template.html @@ -6,10 +6,12 @@ Content models - Content models - In HTML 4 there were only two main content models, block and inline level elements. Block level elements would stack on top of each other in normal document flow while inline level elements typically appear within the flow of text content. - In this example the heading 1 and the paragraphs are block level items, while the bold tags and the link below are examples of inline level elements. - In HTML5 new content models have been created to expand the structure and semantic capabilities of HTML. There are seven main models: Flow, Metadata, Embedded, Interactive, Heading, Phrasing, and Sectioning. To learn more about them, visit the interactive graphic contained in the W3C HTML5 specfication. +

Content models

+ + + In HTML 4 there were only two main content models, block and inline level elements. Block level elements would stack on top of each other in normal document flow while inline level elements typically appear within the flow of text content. + In this example the heading 1 and the paragraphs are block level items, while the bold tags and the link below are examples of inline level elements. + In HTML5 new content models have been created to expand the structure and semantic capabilities of HTML. There are seven main models: Flow, Metadata, Embedded, Interactive, Heading, Phrasing, and Sectioning. To learn more about them, visit the
    interactive graphic
contained in the W3C HTML5 specfication. From 3a668272d2ea092d4db4b3d51adc69139a97422b Mon Sep 17 00:00:00 2001 From: Laura Godinez Date: Mon, 22 Jun 2020 12:26:39 -0400 Subject: [PATCH 4/7] finished edits on 'headings_template.html' --- templates/headings_template.html | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/templates/headings_template.html b/templates/headings_template.html index 8b39af1..230b590 100644 --- a/templates/headings_template.html +++ b/templates/headings_template.html @@ -5,14 +5,21 @@ Formatting page content - HTML Essential Training - Formatting page content +

HTML Essential Training

+ +

Formatting page content

+ In this series of exercises, we'll explore how to use HTML elements to format basic page content. - Adding headings + +

Adding headings

+ Headings help define the structure of the page and control the hierarchy of the content. You can use heading values ranging from a top-level heading of h1 all the way down to an h6. While there are several competing theories on the exact strategy to use when choosing headings, what really matters is that you are using them in an intelligent manner, to accurately reflect the importance of your content. It's also important to be consistent in how you use headings across your site, so deciding on when and how to use headings is an important part of planning your site. - Using paragraphs + +

Using paragraphs

+ The paragraph tag (⟨p⟩) is one of the most basic formatting tags, and one that you'll use often. It indicates a paragraph of text, and should be used for each individual paragraph. - Line breaks + +

Line breaks

Occasionally you'll need to perform a "soft return," that is, create a new line without using a new paragraph. To do that in HTML, you use the line break tag (⟨br⟩). Line break tags are inline, meaning you can use them within headers and paragraphs, and don't require a closing tag. Let's say you were formatting an address, for example. You could use line breaks to make sure each line of the address appeared on a separate line, but still remained within the same paragraph. lynda.com 6410 Via Real Carpinteria, CA 93103. From 0956eccde12b4d1f710d6c196d7805d762c27ae8 Mon Sep 17 00:00:00 2001 From: Laura Godinez Date: Mon, 22 Jun 2020 20:21:37 -0400 Subject: [PATCH 5/7] finished edits on 'syntax_template.html' --- templates/syntax_template.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/syntax_template.html b/templates/syntax_template.html index 558b397..e98f633 100644 --- a/templates/syntax_template.html +++ b/templates/syntax_template.html @@ -1 +1 @@ -HTML uses tags to identify page content. This text, for example, is a paragraph. \ No newline at end of file +HTML uses tags to identify page content. This text, for example, is a paragraph \ No newline at end of file From 997e7f62d652247239f77f6712f4eb21fb45496a Mon Sep 17 00:00:00 2001 From: Laura Godinez Date: Mon, 22 Jun 2020 20:28:17 -0400 Subject: [PATCH 6/7] finished edit_2 on body_template.html --- templates/body_template.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/body_template.html b/templates/body_template.html index 0cbdb1d..b9bf089 100644 --- a/templates/body_template.html +++ b/templates/body_template.html @@ -6,8 +6,8 @@ Basic HTML document - Page content +

Page content

- The main page content appears inside the body tag. HTML contains several elements that allow you to properly structure and format your content, which we'll cover later. +

The main page content appears inside the body tag. HTML contains several elements that allow you to properly structure and format your content, which we'll cover later.

\ No newline at end of file From eeaaecbe2173875321bf29e7451c9933cd4be254 Mon Sep 17 00:00:00 2001 From: Laura Godinez Date: Mon, 22 Jun 2020 20:43:34 -0400 Subject: [PATCH 7/7] finished edits on 'models_template.html' --- templates/models_template.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/models_template.html b/templates/models_template.html index c0fd18c..bd56a3c 100644 --- a/templates/models_template.html +++ b/templates/models_template.html @@ -9,9 +9,9 @@

Content models

- In HTML 4 there were only two main content models, block and inline level elements. Block level elements would stack on top of each other in normal document flow while inline level elements typically appear within the flow of text content. - In this example the heading 1 and the paragraphs are block level items, while the bold tags and the link below are examples of inline level elements. - In HTML5 new content models have been created to expand the structure and semantic capabilities of HTML. There are seven main models: Flow, Metadata, Embedded, Interactive, Heading, Phrasing, and Sectioning. To learn more about them, visit the
    interactive graphic
contained in the W3C HTML5 specfication. +

In HTML 4 there were only two main content models, block and inline level elements. Block level elements would stack on top of each other in normal document flow while inline level elements typically appear within the flow of text content.

+

In this example the heading 1 and the paragraphs are block level items, while the bold tags and the link below are examples of inline level elements.

+

In HTML5 new content models have been created to expand the structure and semantic capabilities of HTML. There are seven main models: Flow, Metadata, Embedded, Interactive, Heading, Phrasing, and Sectioning. To learn more about them, visit the interactive graphic contained in the W3C HTML5 specfication.