diff --git a/README.md b/README.md index 03d7cb9..72ffbf9 100644 --- a/README.md +++ b/README.md @@ -95,4 +95,29 @@ * The edits should render a webpage which resembles the image below - \ No newline at end of file + + + + + + + Calculator + + \ No newline at end of file diff --git a/Star.html b/Star.html new file mode 100644 index 0000000..159da6e --- /dev/null +++ b/Star.html @@ -0,0 +1,57 @@ + + + + + + +

+

She loves to write poems, play video games and she loves to eat .

+

What are her dislikes?

+

Well that's a excellent question in Leon's vioce

+

Well she hates her food cold

+ + + + + + + + + + + + + + + + + + + + + + + + + + + Star also loves photography, particulrly nature. + + + + + + +
+ + +
+ + + + + + + + + \ No newline at end of file diff --git a/body template.html b/body template.html new file mode 100644 index 0000000..2fef6d2 --- /dev/null +++ b/body template.html @@ -0,0 +1,28 @@ + + + + + + + + + Star also loves photography, particulrly nature. + + + + + + +
+ + +
+ + + + + + + + + \ No newline at end of file diff --git a/calculator.html b/calculator.html new file mode 100644 index 0000000..60f9d39 --- /dev/null +++ b/calculator.html @@ -0,0 +1,21 @@ + + Calculator + + \ No newline at end of file diff --git a/headings_template.html b/headings_template.html new file mode 100644 index 0000000..39aa0e9 --- /dev/null +++ b/headings_template.html @@ -0,0 +1,26 @@ + + + + + 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 + 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 +
+

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 +
+ 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. + + diff --git a/index.html b/index.html index 4dc0c72..6a3de14 100644 --- a/index.html +++ b/index.html @@ -1,11 +1,11 @@ - + - - +

+

She loves to write poems, play video games and she loves to eat .

diff --git a/lecturedemos b/lecturedemos new file mode 160000 index 0000000..20fb773 --- /dev/null +++ b/lecturedemos @@ -0,0 +1 @@ +Subproject commit 20fb77348b81f0bd2045d276ec7019f685533d95 diff --git a/loginpw.html b/loginpw.html new file mode 100644 index 0000000..5d93080 --- /dev/null +++ b/loginpw.html @@ -0,0 +1,11 @@ +
+ +
+ +
+ +
+ +
+ +
\ No newline at end of file diff --git a/model demo.txt b/model demo.txt new file mode 100644 index 0000000..0e8b17f --- /dev/null +++ b/model demo.txt @@ -0,0 +1,11 @@ + + + + + + \ No newline at end of file diff --git a/models_template.html b/models_template.html new file mode 100644 index 0000000..1cb8ff6 --- /dev/null +++ b/models_template.html @@ -0,0 +1,13 @@ + + + + + + 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. + diff --git a/reg.html b/reg.html new file mode 100644 index 0000000..e69de29 diff --git a/templates/models_template.html b/templates/models_template.html index 2f6ec67..160b684 100644 --- a/templates/models_template.html +++ b/templates/models_template.html @@ -6,10 +6,10 @@ 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.