From cd034269f85d51843de5ada03c000a02ff892f98 Mon Sep 17 00:00:00 2001 From: Ader Date: Wed, 11 Jan 2017 15:17:23 +0000 Subject: a word was duplicated, I took it off. (#2626) --- html.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'html.html.markdown') diff --git a/html.html.markdown b/html.html.markdown index b64cec33..3c855b5c 100644 --- a/html.html.markdown +++ b/html.html.markdown @@ -9,7 +9,7 @@ translators: HTML stands for HyperText Markup Language. It is a language which allows us to write pages for the world wide web. -It is a markup language, it enables us to write to write webpages using code to indicate how text and data should be displayed. +It is a markup language, it enables us to write webpages using code to indicate how text and data should be displayed. In fact, html files are simple text files. What is this markup? It is a method of organising the page's data by surrounding it with opening tags and closing tags. This markup serves to give significance to the text that it encloses. -- cgit v1.2.3 From 2eb1aa6abdc07cf25d6706a0ed5f9963fdd60605 Mon Sep 17 00:00:00 2001 From: SmuSmu Date: Sun, 22 Oct 2017 13:52:48 +0200 Subject: Update html.html.markdown --- html.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'html.html.markdown') diff --git a/html.html.markdown b/html.html.markdown index 3c855b5c..6516e5dd 100644 --- a/html.html.markdown +++ b/html.html.markdown @@ -111,7 +111,7 @@ This article is concerned principally with HTML syntax and some useful tips. ## Usage -HTML is written in files ending with `.html`. +HTML is written in files ending with `.html` or `.htm`. The mime type is `text/html`. ## To Learn More -- cgit v1.2.3 From 9764b328d8e624456d93e0c411a29d339bc6c546 Mon Sep 17 00:00:00 2001 From: Pratik Karki Date: Sat, 3 Mar 2018 11:36:48 +0545 Subject: Fix #3074 --- html.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'html.html.markdown') diff --git a/html.html.markdown b/html.html.markdown index 6516e5dd..04b9f501 100644 --- a/html.html.markdown +++ b/html.html.markdown @@ -1,6 +1,6 @@ --- language: html -filename: learnhtml.html +filename: learnhtml.txt contributors: - ["Christophe THOMAS", "https://github.com/WinChris"] translators: -- cgit v1.2.3 From f7242c2e6cb061c03619790827b0b8b3aab2b82f Mon Sep 17 00:00:00 2001 From: Kyle Mendes Date: Sun, 28 Oct 2018 12:15:17 -0500 Subject: Enforcing 80 char linelength --- html.html.markdown | 111 +++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 83 insertions(+), 28 deletions(-) (limited to 'html.html.markdown') diff --git a/html.html.markdown b/html.html.markdown index 04b9f501..4d225aca 100644 --- a/html.html.markdown +++ b/html.html.markdown @@ -7,25 +7,41 @@ translators: - ["Robert Steed", "https://github.com/robochat"] --- -HTML stands for HyperText Markup Language. +HTML stands for HyperText Markup Language. + It is a language which allows us to write pages for the world wide web. -It is a markup language, it enables us to write webpages using code to indicate how text and data should be displayed. -In fact, html files are simple text files. -What is this markup? It is a method of organising the page's data by surrounding it with opening tags and closing tags. -This markup serves to give significance to the text that it encloses. -Like other computer languages, HTML has many versions. Here we will talk about HTML5. +It is a markup language, it enables us to write webpages using code to indicate +how text and data should be displayed. In fact, html files are simple text +files. + +What is this markup? It is a method of organising the page's data by +surrounding it with opening tags and closing tags. This markup serves to give +significance to the text that it encloses. Like other computer languages, HTML +has many versions. Here we will talk about HTML5. -**NOTE :** You can test the different tags and elements as you progress through the tutorial on a site like [codepen](http://codepen.io/pen/) in order to see their effects, understand how they work and familiarise yourself with the language. -This article is concerned principally with HTML syntax and some useful tips. +**NOTE :** You can test the different tags and elements as you progress through +the tutorial on a site like [codepen](http://codepen.io/pen/) in order to see +their effects, understand how they work and familiarise yourself with the +language. This article is concerned principally with HTML syntax and some +useful tips. ```html + + - + + @@ -33,7 +49,9 @@ This article is concerned principally with HTML syntax and some useful tips.

Hello, world!

- Come look at what this shows + + Come look at what this shows +

This is a paragraph.

This is another paragraph.

    @@ -44,7 +62,9 @@ This article is concerned principally with HTML syntax and some useful tips. - + @@ -58,10 +78,17 @@ This article is concerned principally with HTML syntax and some useful tips. - + - My Site + + My Site @@ -69,13 +96,28 @@ This article is concerned principally with HTML syntax and some useful tips. -

    Hello, world!

    - - Come look at what this shows -

    This is a paragraph.

    + +

    Hello, world!

    + + + + + Come look at what this shows + + + +

    This is a paragraph.

    This is another paragraph.

    -
      - + + + +
      • This is an item in a non-enumerated list (bullet list)
      • This is another item
      • And this is the last item on the list
      • @@ -86,21 +128,33 @@ This article is concerned principally with HTML syntax and some useful tips. - - - + + + - - - + +
        First Header
        + + + + + + + - + + + + @@ -111,9 +165,10 @@ This article is concerned principally with HTML syntax and some useful tips. ## Usage -HTML is written in files ending with `.html` or `.htm`. The mime type is `text/html`. +HTML is written in files ending with `.html` or `.htm`. The mime type is +`text/html`. -## To Learn More +## To Learn More * [wikipedia](https://en.wikipedia.org/wiki/HTML) * [HTML tutorial](https://developer.mozilla.org/en-US/docs/Web/HTML) -- cgit v1.2.3 From eebbb1dd518768cbdcf09cd1ed9d0a20bb702df2 Mon Sep 17 00:00:00 2001 From: Amey Bhavsar Date: Fri, 15 Feb 2019 15:14:59 +0530 Subject: Update html.html.markdown --- html.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'html.html.markdown') diff --git a/html.html.markdown b/html.html.markdown index 4d225aca..f01f139c 100644 --- a/html.html.markdown +++ b/html.html.markdown @@ -167,7 +167,7 @@ useful tips. HTML is written in files ending with `.html` or `.htm`. The mime type is `text/html`. - +**HTML is NOT a programming language** ## To Learn More * [wikipedia](https://en.wikipedia.org/wiki/HTML) -- cgit v1.2.3 From a5137a82863ac0b791184f4ff359937d7229496e Mon Sep 17 00:00:00 2001 From: Dimitri Kokkonis Date: Sat, 3 Aug 2019 20:25:27 +0200 Subject: [html/gr] Add greek translation for the HTML language (#3588) * Add greek translation for the HTML language * Correct typo in source file name --- html.html.markdown | 1 + 1 file changed, 1 insertion(+) (limited to 'html.html.markdown') diff --git a/html.html.markdown b/html.html.markdown index f01f139c..b8212776 100644 --- a/html.html.markdown +++ b/html.html.markdown @@ -5,6 +5,7 @@ contributors: - ["Christophe THOMAS", "https://github.com/WinChris"] translators: - ["Robert Steed", "https://github.com/robochat"] + - ["Dimitri Kokkonis", "https://github.com/kokkonisd"] --- HTML stands for HyperText Markup Language. -- cgit v1.2.3
        First Header Second Header
        first row, first column first row, first column first row, second column
        second row, first column second row, second column