From 489d0bde8d44d4ead200f9241f5da313c099706c Mon Sep 17 00:00:00 2001 From: Akshit Meghawat Date: Wed, 11 Feb 2015 10:31:32 +0530 Subject: [PATCH 1/5] Added introduction of usage and semantics of h1 tag --- README.md | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d953a62..52b11fa 100644 --- a/README.md +++ b/README.md @@ -1 +1,23 @@ -# Wiki +# Use`

`tag only once + +## Introduction + +Every page should include a single `

` tag and follow descendance for other header tags as well. The `

` tag should contain up to 150 characters of text that accurately summarises and describes the contents of the page. + +## Descendance of Header tags + +If the page contains a significant amount of text, it should be organised with `

` through `

` subheadings that summarise and categorise the text that they precede. + +## Search Engine Optimisation + +Search engines rely on correctly used headings to determine the organisation and contents of a site. + +### Example + +`

Use H1 tag only once

` + +### Further References + +http://www.writingforseo.org/how-many-h1-tags-can-you-have-on-a-page/ +http://zerogravitymarketing.com/multiple-h1-tags/ +http://webdesign.tutsplus.com/articles/the-truth-about-multiple-h1-tags-in-the-html5-era--webdesign-16824 \ No newline at end of file From c540329693ad5e41dd6fcf3a108c13a739371bf4 Mon Sep 17 00:00:00 2001 From: Akshit Meghawat Date: Thu, 12 Feb 2015 10:12:23 +0530 Subject: [PATCH 2/5] Introduced bulleted lists --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 52b11fa..84086ba 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,22 @@ -# Use`

`tag only once +#Use`

`tag only once -## Introduction +###*Introduction Every page should include a single `

` tag and follow descendance for other header tags as well. The `

` tag should contain up to 150 characters of text that accurately summarises and describes the contents of the page. -## Descendance of Header tags +###*Descendance of Header tags If the page contains a significant amount of text, it should be organised with `

` through `

` subheadings that summarise and categorise the text that they precede. -## Search Engine Optimisation +###*Search Engine Optimisation Search engines rely on correctly used headings to determine the organisation and contents of a site. -### Example +####Example -`

Use H1 tag only once

` +```html

Use H1 tag only once

``` -### Further References +####Further References http://www.writingforseo.org/how-many-h1-tags-can-you-have-on-a-page/ http://zerogravitymarketing.com/multiple-h1-tags/ From 40c850e9239de9b197f09d368f079c16b7c5b563 Mon Sep 17 00:00:00 2001 From: Akshit Meghawat Date: Thu, 12 Feb 2015 10:13:51 +0530 Subject: [PATCH 3/5] Corrected bulleted lists --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 84086ba..f120cac 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ #Use`

`tag only once -###*Introduction +*###Introduction Every page should include a single `

` tag and follow descendance for other header tags as well. The `

` tag should contain up to 150 characters of text that accurately summarises and describes the contents of the page. -###*Descendance of Header tags +*###Descendance of Header tags If the page contains a significant amount of text, it should be organised with `

` through `

` subheadings that summarise and categorise the text that they precede. -###*Search Engine Optimisation +*###*Search Engine Optimisation Search engines rely on correctly used headings to determine the organisation and contents of a site. From 941364a064d5bb147f9196d8f370cd9e5f127224 Mon Sep 17 00:00:00 2001 From: Akshit Meghawat Date: Thu, 12 Feb 2015 10:18:09 +0530 Subject: [PATCH 4/5] Used bold headings instead of sub-headings --- README.md | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index f120cac..0c3e6b3 100644 --- a/README.md +++ b/README.md @@ -1,16 +1,10 @@ #Use`

`tag only once -*###Introduction +* Every page should include a single `

` tag and follow **descendance** for other header tags as well. The `

` tag should contain up to **150 characters** of text that accurately summarises and describes the contents of the page. -Every page should include a single `

` tag and follow descendance for other header tags as well. The `

` tag should contain up to 150 characters of text that accurately summarises and describes the contents of the page. +* If the page contains a significant amount of text, it should be organised with `

` through `

` subheadings that summarise and categorise the text that they precede. -*###Descendance of Header tags - -If the page contains a significant amount of text, it should be organised with `

` through `

` subheadings that summarise and categorise the text that they precede. - -*###*Search Engine Optimisation - -Search engines rely on correctly used headings to determine the organisation and contents of a site. +* **Search engines** rely on correctly used headings to determine the organisation and contents of a site. ####Example From 7a4ef588a2906f4b7c158dee42f4aec3d5d40340 Mon Sep 17 00:00:00 2001 From: Akshit Meghawat Date: Thu, 12 Feb 2015 10:20:40 +0530 Subject: [PATCH 5/5] Corrected the sample code --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c3e6b3..0d37ea6 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,9 @@ ####Example -```html

Use H1 tag only once

``` +```html +

Use H1 tag only once

+``` ####Further References