From a35197aa0b8934bb2c7b5d178aef6bcb8e0b5981 Mon Sep 17 00:00:00 2001 From: mondira-roy Date: Mon, 22 Jun 2020 12:47:31 -0400 Subject: [PATCH 01/10] finished edits on ' syntax_template.html' --- templates/syntax_template.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/templates/syntax_template.html b/templates/syntax_template.html index 6862e5a..67b5911 100644 --- a/templates/syntax_template.html +++ b/templates/syntax_template.html @@ -1 +1,2 @@ -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 c3bf7535b65a81ac9710597f475c944fee10921b Mon Sep 17 00:00:00 2001 From: mondira-roy Date: Mon, 22 Jun 2020 12:48:31 -0400 Subject: [PATCH 02/10] finished edits on ' syntax_template.html' --- templates/syntax_template.html | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/templates/syntax_template.html b/templates/syntax_template.html index 67b5911..cb14ccb 100644 --- a/templates/syntax_template.html +++ b/templates/syntax_template.html @@ -1,2 +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 ef0a7a317a62da7efcb44221a70a181d4b2d3d21 Mon Sep 17 00:00:00 2001 From: mondira-roy Date: Mon, 22 Jun 2020 15:21:51 -0400 Subject: [PATCH 03/10] finished edits on 'syntax_template.html' --- templates/syntax_template.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/templates/syntax_template.html b/templates/syntax_template.html index cb14ccb..3da9989 100644 --- a/templates/syntax_template.html +++ b/templates/syntax_template.html @@ -1 +1,5 @@ -

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 b1bafab3d672106a97ff102a2540e49c633d3da3 Mon Sep 17 00:00:00 2001 From: mondira-roy2020 Date: Mon, 22 Jun 2020 16:46:18 -0400 Subject: [PATCH 04/10] Exercise 1 updated --- templates/body_template.html | 2 +- templates/headings_template.html | 13 +++++++------ templates/models_template.html | 10 ++++++---- 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/templates/body_template.html b/templates/body_template.html index 837c4bb..d4e34bc 100644 --- a/templates/body_template.html +++ b/templates/body_template.html @@ -7,6 +7,6 @@ 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 diff --git a/templates/headings_template.html b/templates/headings_template.html index 8b39af1..7e13754 100644 --- a/templates/headings_template.html +++ b/templates/headings_template.html @@ -2,17 +2,18 @@ - 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. diff --git a/templates/models_template.html b/templates/models_template.html index 2f6ec67..10788e3 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. + + 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 db279ce72ff4ef6c2ef356c3aeb59e0de972fd4e Mon Sep 17 00:00:00 2001 From: mondira-roy2020 Date: Mon, 22 Jun 2020 17:11:22 -0400 Subject: [PATCH 05/10] updating models_template --- templates/models_template.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/models_template.html b/templates/models_template.html index 10788e3..43c924a 100644 --- a/templates/models_template.html +++ b/templates/models_template.html @@ -11,7 +11,7 @@
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 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 6fd95f247915521d991b063e4189853fa256982e Mon Sep 17 00:00:00 2001 From: mondira-roy2020 Date: Mon, 22 Jun 2020 18:04:17 -0400 Subject: [PATCH 06/10] updating Body_template and headings_template files --- templates/body_template.html | 2 +- templates/models_template.html | 34 ++++++++++++++++++++++------------ 2 files changed, 23 insertions(+), 13 deletions(-) diff --git a/templates/body_template.html b/templates/body_template.html index d4e34bc..0fca272 100644 --- a/templates/body_template.html +++ b/templates/body_template.html @@ -6,7 +6,7 @@ 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. \ No newline at end of file diff --git a/templates/models_template.html b/templates/models_template.html index 43c924a..457d10d 100644 --- a/templates/models_template.html +++ b/templates/models_template.html @@ -1,17 +1,27 @@ - - - - Content models - - + + + + + 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 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 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 0dbfe4d7254558b56f43a0b6ff862b1ad52a1417 Mon Sep 17 00:00:00 2001 From: mondira-roy2020 Date: Mon, 22 Jun 2020 19:07:06 -0400 Subject: [PATCH 07/10] The Final assignments from the presentation --- exercises/final.html | 53 ++++++++++++++++++++++++++++++++++++++++++++ exercises/first.html | 20 +++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 exercises/final.html create mode 100644 exercises/first.html diff --git a/exercises/final.html b/exercises/final.html new file mode 100644 index 0000000..542a18e --- /dev/null +++ b/exercises/final.html @@ -0,0 +1,53 @@ + + + + +Logo HERE + + + + +

My Page

+

Yup!!

+ +

Lorem ipsum dolor sit amet, + consectetur adipisicing elit,set do eiusmod +

+ + + + + + + + + + + + + + + + + + + + + + + + + +
MorningsEveningsNights
Wake UpWake Up AgainFinally
Eat,exercise,Watch TV at the same timeStill Waking UpOn with my day
SleepNever mindSleep
+ +
No Copy Rights \ No newline at end of file diff --git a/exercises/first.html b/exercises/first.html new file mode 100644 index 0000000..655de3c --- /dev/null +++ b/exercises/first.html @@ -0,0 +1,20 @@ + + First Exercise Page 22 + + +Logo here + + + \ No newline at end of file From 165bf1b626a274a83bc762a9b45018184b419b57 Mon Sep 17 00:00:00 2001 From: mondira-roy2020 Date: Mon, 22 Jun 2020 19:32:51 -0400 Subject: [PATCH 08/10] The Login Page --- exercises/login.html | 14 ++++++++++++++ exercises/register.html | 0 2 files changed, 14 insertions(+) create mode 100644 exercises/login.html create mode 100644 exercises/register.html diff --git a/exercises/login.html b/exercises/login.html new file mode 100644 index 0000000..8a303e9 --- /dev/null +++ b/exercises/login.html @@ -0,0 +1,14 @@ + + +

Login Page

+
+
+ + +
+ +
+
+ \ No newline at end of file diff --git a/exercises/register.html b/exercises/register.html new file mode 100644 index 0000000..e69de29 From 8d2c0c17d9ca7ff88acbc8599c851dfbfd49da00 Mon Sep 17 00:00:00 2001 From: mondira-roy2020 Date: Mon, 22 Jun 2020 20:05:34 -0400 Subject: [PATCH 09/10] The Register Page --- exercises/register.html | 45 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/exercises/register.html b/exercises/register.html index e69de29..5cb7836 100644 --- a/exercises/register.html +++ b/exercises/register.html @@ -0,0 +1,45 @@ + + +

Register Page

+
+
+ + +
+ + +
+ + +
+ + +
+ + +
+ + + + + +
+ + +
+ + + + + + + +
+
+ \ No newline at end of file From 6b142f1a2a2f3aafe0ea5f18673f950b52423dc4 Mon Sep 17 00:00:00 2001 From: Mondira Roy Date: Tue, 8 Sep 2020 10:33:56 -0400 Subject: [PATCH 10/10] Create travis.yml --- travis.yml | 1 + 1 file changed, 1 insertion(+) create mode 100644 travis.yml diff --git a/travis.yml b/travis.yml new file mode 100644 index 0000000..8a73325 --- /dev/null +++ b/travis.yml @@ -0,0 +1 @@ +language : java