Commit Graph

102 Commits (fd89b4a81318eb173a1c5e983ad0f52f5c97f0e2)

Author SHA1 Message Date
Roenz Aberin f00945fbcb Fixed the grammar on line 41 (#23818) 2018-11-27 21:09:27 -05:00
Eme-rald 3ba002f2b6 Made code more clear + Added Image (#22763) 2018-11-26 05:17:27 -05:00
Bearz314 0bbcfa8cdd Minor English corrections and added note on IE conditional comments (#22405)
Gave a practical use case of IE conditional comments.
2018-11-26 04:58:27 -05:00
Miracle Gabriel e659e5ecf5 Added a video link for "HTML TABLE" (#22796) 2018-11-26 16:20:20 +09:00
Sam c18393fa3a Removed duplicate info and corrected formatting (#23413)
There were two descriptions explaining what a strong tag is.
The More Information links were duplicated.
Also corrected inconsistent and incorrect markdown/html formatting.
2018-11-25 23:19:32 -05:00
adeelnazir13236 42ee9f849a Added Nested HTML Lists with example (#22537)
* Added Nested HTML Lists with example

* added `html` markdown for code block, added output example
2018-11-25 11:43:24 -07:00
Lxsthorne a1d25bb90f Changes (#22701) 2018-11-24 21:07:51 -05:00
JacobTBruce ee17eb4720 Made several grammatical changes (#23288)
Removed space between "/" and "body" in line 27 to correct the spacing. 
Added "use" in between "container" and "several" to make grammatical sense in line 32. Also added a space between "semantic" and the parathesis in the same line to make text look cleaner.
Added "and" between "<header>" and "<footer>" because there are two items in line 33.

Note: In "Introduction of semantic tags," the grammar and sentence structure does not make sense. I tried to correct it, however, it may not be the right correction and should be reviewed.
2018-11-23 20:20:36 -05:00
Sam 65db5549f4 Corrected markdown and code sample formatting (#23374)
* Corrected markdown and code sample formatting

Added code highlighting to `<p>`, to prevent it being interpreted as a new paragraph.
Also made indentation in the code sample consistent.

* Fixed typo and formatting
2018-11-23 20:19:15 -05:00
JacobTBruce fd564a8607 Changed misused words to correct ones (#23256)
Changed "change" to "chance" in line 51 to make sense and "existance" to "existence" in line 51 to correct the spelling.
2018-11-23 05:18:21 -05:00
KingofLegendary 8df49e4e40 Fix the order wording(Second to first ) (#23254)
Before modifying this, line 23 quote, "by default the first checkbox will come automatically" even though the checked attribute is in the second input element, not the first.
2018-11-23 05:17:42 -05:00
Tristan Michael Lawrence a92f62c2d8 added an HTML reference source (#22844) 2018-11-22 23:07:35 -05:00
JacobTBruce a930ebce53 Changed wording to make easier to read (#23180)
Changed "ascribe" to "attribute" in line 7 so make reading easier. Also changed "The" to "This" on lines 38, 40, 42, 44, and 46 to show that the element possessed that attribute and to help make it easier to read.
2018-11-22 03:56:28 -05:00
carlos fernandez d2a49084ed order of the '<tfoot>' and '<tbody>' tags (#23029)
The order in the table of its child tags (thead , tbody and tfoot)
2018-11-22 02:23:52 -05:00
csteacher1 1a8e7c792d Prosed addition to sentence beginning on Line 8 (#22953)
At the end of the sentence, after "more clearly explain the purpose of each section of a website" add "and make the structure of the website easier to understand."
2018-11-21 23:06:47 -05:00
Minna f365204cc8 Add the text "### Nested HTML lists" to (#22946)
* Add the text "### Nested HTML lists" to

### Nested HTML Lists

List can be nested (lists inside lists):

##### Code:

<ul>
  <li>Coffee</li>
  <li>Tea
    <ul>
      <li>Black tea</li>
      <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ul>


##### Output:

<ul>
  <li>Coffee</li>
  <li>Tea
    <ul>
      <li>Black tea</li>
      <li>Green tea</li>
    </ul>
  </li>
  <li>Milk</li>
</ul>

* Fixed formatting and reordered sections
2018-11-21 23:00:02 -05:00
Danny 73326f98ec Fixed grammar error on line 70 (#21182)
Fixed grammar error on line 70. Changed the word "do" to "does".
2018-11-21 08:51:01 -05:00
zweifish 09edf93ba9 fixed minor formatting error (#21184)
* fixed minor formatting error

* Update index.md
2018-11-21 08:27:47 -05:00
vtt01uk 0abba344c9 Minor spelling corrections (#22825) 2018-11-20 19:12:30 -05:00
csteacher1 bc48cff3e8 Usage Section Update (#22977)
Add the following paragraph after the doctype declaration on Line 55:

"It is important to note, that while "DOCTYPE" is shown in uppercase letters here.  The keyword "DOCTYPE" is case-insensitive and can be uppercase or lowercase.  This simplification is part of the reason HTML5 pages are compatible with old and new browsers, and also compatible with the browsers on mobile devices."
2018-11-20 18:58:37 -05:00
Dallin Reeves 4b44e363c4 Added resource under 'More information' (#22957)
* Added resource under 'More information'

* Fixed formatting
2018-11-20 18:54:18 -05:00
Muralidharan Sekar a812f79709 Add the text "Basic HTML Program" to the article (#22181)
* Add the text "Basic HTML Program" to the article

* Fixed formatting
2018-11-19 16:33:21 -05:00
Jessica Swift 36d0203e29 Fixed minor grammer issue (#24628)
Added ending quote to line and a break point between information links.
2018-11-19 19:35:00 +05:30
vtt01uk 8aeaadc497 Sentence correction (#22819) 2018-11-19 03:42:58 -05:00
Tansica Sun f48810ca93 Proper table formating with <thead> and <tbody> (#21605)
* Proper table formating with <thead> and <tbody>

* Edit table headers and fix indentation
2018-11-19 05:15:12 +07:00
zaccodes 660c981515 Update the example to reflect the prefix (#22241) 2018-11-18 08:29:28 -06:00
Ece f7a0936d68 Add info about class order (#21986) 2018-11-17 19:05:13 -07:00
fateeq 0f335a2fbc Add 'be' to sentence, and correct 'change' to 'chance' (#28267) 2018-11-17 19:23:45 +08:00
JacobTBruce d12c7bf142 Changed "s" to "a" to make grammatical sense in line 24 (#23162)
Changed "s" to "a" to make grammatical sense in line 24.
Added "as mentioned before" to reference previous example of multiple class used.
2018-11-17 00:18:58 -05:00
Kuldeep Pisda bed1febd1f Update: HTML docs source converted to comment (#21799)
* Update: HTML docs source converted to comment

* Update: added cd command in linux->10 simple and useful...
2018-11-16 21:50:10 -07:00
daniela-idara 346d89953c added "iframe tags" link (#21685)
* added "iframe tags" link

* added spacing

* Markdownize link
2018-11-15 10:17:06 -06:00
Netanya 5e4b8575de Updated syntax and grammar (#21784) 2018-11-15 10:16:10 -06:00
Egregious-Egg ae42ced684 Change "recognize" to "recognized" in line 28 (#23210) 2018-11-15 02:15:31 -05:00
Sigurd Morsby 5e91cd7553 Changed space to width (#23147)
It said that block level elements fill up the container's space. They only fill the width.
2018-11-15 01:53:15 -05:00
carlos fernandez 969065887a In the example the Read more line (#23063)
The read more line in the example it has to be inside the comments.
2018-11-14 23:14:58 -05:00
Johnathan Milley 2a1ae19bd1 Removed unnecessary "Other Information" header (#23055) 2018-11-14 20:55:31 -05:00
Jeff Innes 04e9303bca Fixed typos and grammer errors in index.md (#21546) 2018-11-15 06:02:33 +07:00
Ankita Sood 2119574ee8 Replace it's with its (#23864)
Corrected the usage of the colon.
2018-11-13 21:08:26 -05:00
EmeraldEntities 3ecb87155f Added detail and description and fixed grammar (#21480)
Changed the examples, added more details about each formatting method, and cleaned up grammar. Also made the text easier to read and comprehend, as well as more attractive.
2018-11-13 23:37:09 +00:00
Izwan Rusli bc896c92ea Adding sentence "The '<br>' tag is an empty tag which means that it h… (#21303)
* Adding sentence "The '<br>' tag is an empty tag which means that it has no closing tag."

* Format the text properly
2018-11-12 07:36:27 -08:00
EmeraldEntities 39e936bbaa Changed the text information and grammar (#21360) 2018-11-12 20:45:05 +09:00
Anandu B Ajith 5d6628dd1a fix formatting , add expansions (#21521) 2018-11-10 21:43:25 +00:00
EmeraldEntities efdb543d76 Fixed grammatical issues and updated the text (#21329) 2018-11-10 12:08:41 +09:00
Rogel Horlador c582a638cc Updated the URL of <input> tag (#21392) 2018-11-09 23:54:10 +00:00
Kris Hayes e6a9e49ac3 Added diff between span and div section (#21386) 2018-11-09 23:37:16 +00:00
Rogel Horlador 1cc8a24b47 Added types for <input> tag (#21327) 2018-11-09 07:29:19 -06:00
ayra-jafri 276146b247 Fixed some minor typos (#21257) 2018-11-08 19:39:58 +05:30
zweifish 7ec5d3126d fixed some grammatical errors (#21156) 2018-11-07 20:39:18 +00:00
barrettfett d2c2fa0ce6 Add other values of the target attribute (#20989)
* Add other values of the target attribute

"_self" "_parent" "_top" _"targetframe"

* fixed grammar and formatting issues

* additional formatting corrections
2018-11-07 14:34:24 -05:00
S.Hale 3920b7c4ce Corrected capitalization, corrected to American spellings and typos (#30685)
* Translate challenge subtitles and example challenge text to Spanish

* Corrected errors in syntax and punctuation

* Multiple corrections of it/s to its plus other grammar corrections

* Correction and added paragraph to CSS Flex article

* Corrected my own typo

* Corrected capitalization, American spellings and typos
2018-11-07 10:34:13 -05:00