-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Update html5.html #419
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
dnlwlsn
wants to merge
1
commit into
LeCoupa:master
Choose a base branch
from
dnlwlsn:patch-3
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Update html5.html #419
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,19 +6,19 @@ | |
|
|
||
| <!-- Document Summary --> | ||
|
|
||
| <!DOCTYPE html> <!-- Tells the browser that HTML5 version of HTML to be recognized by the browser --> | ||
| <html lang="en"></html> <!-- The HTML lang attribute is used to identify the language of text content on the web. This information helps search engines return language specific results, --> | ||
| <head></head> <!-- Contains Information specific to the page like title, styles and scripts --> | ||
| <!DOCTYPE html> <!-- Tells the web browser that the page is written in HTML5 --> | ||
| <html lang="en"></html> <!-- The HTML lang attribute is used to identify the language of text content on the web. This information helps search engines return language specific results --> | ||
| <head></head> <!-- Contains information specific to the page like title, styles, and scripts --> | ||
| <title></title> <!-- Title for the page that shows up in the browser title bar --> | ||
| <body></body> <!-- Content that the user will see --> | ||
|
|
||
|
|
||
| <!-- Document Information --> | ||
|
|
||
|
|
||
| <base/> <!-- Usefull for specifying relative links in a document --> | ||
| <base/> <!-- Useful for specifying relative links in a document --> | ||
| <style></style> <!-- Contains styles for the html document --> | ||
| <meta/> <!-- Contains additional information about the page, author, page description and other hidden page info --> | ||
| <meta/> <!-- Contains additional information about the page, author, page description, and other hidden page info --> | ||
| <script></script> <!-- Contains all scripts internal or external --> | ||
| <link/> <!-- Used to create relationships with external pages and stylesheets --> | ||
|
|
||
|
|
@@ -39,10 +39,10 @@ <h1></h1> ... <h6></h6> <!-- All six levels of heading | |
|
|
||
| <strong></strong> and <b></b> <!-- Makes text contained in the tag as bold --> | ||
| <em></em> and <i></i> <!-- Alternative way to make the text contained in the tag as italic --> | ||
| <del></del> <!-- Creates a strike through the text element --> | ||
| <del></del> <!-- Creates a strike through the text element --> | ||
| <pre></pre> <!-- Preformatted monospace text block with some spacing intact --> | ||
| <blockquote></blockquote> <!-- Contains long paragraphs of quotations often cited --> | ||
| <abbr></abbr> <!-- Contains abbreviations while also making the full form avaialable --> | ||
| <abbr></abbr> <!-- Contains abbreviations while also making the full form available --> | ||
| <address></address> <!-- Used to display contact information --> | ||
| <code></code> <!-- Used to display inline code snippets --> | ||
| <q></q> <!-- Defines a short inline quotation --> | ||
|
|
@@ -85,9 +85,9 @@ <h1></h1> ... <h6></h6> <!-- All six levels of heading | |
|
|
||
| <form action="url"></form> <!-- Form element creates a form and action="" specifies where the data is to be sent to when the visitor submits the form --> | ||
|
|
||
| <!-- Supported attributes --> | ||
| <!-- Supported Attributes --> | ||
| method="somefunction()" <!-- Contains the type of request (GET, POST... etc) which dictates how to send the data of the form --> | ||
| enctype="" <!-- Dictates how the data is to be encoded when the data is sent to the web server. --> | ||
| enctype="" <!-- Dictates how the data is to be encoded when the data is sent to the web server --> | ||
| autocomplete="" <!-- Specifies if the autocomplete functionality is enabled or not --> | ||
| novalidate <!-- Dictates if the form will be validated or not --> | ||
| accept-charset="" <!-- Identifies the character encoding upon form submission --> | ||
|
|
@@ -99,7 +99,7 @@ <h1></h1> ... <h6></h6> <!-- All six levels of heading | |
|
|
||
| <input type="text/email/number/color/date"> <!-- Input is the input field where the user can input various types of data --> | ||
|
|
||
| <!-- Supported attributes --> | ||
| <!-- Supported Attributes --> | ||
| name="" <!-- Describes the name of the form --> | ||
| width="" <!-- Specifies the width of an input field --> | ||
| value="" <!-- Describes the value of the input information field --> | ||
|
|
@@ -113,7 +113,7 @@ <h1></h1> ... <h6></h6> <!-- All six levels of heading | |
|
|
||
| <select name=""></select> <!-- Describes a dropdown box for users to select from variety of choices --> | ||
|
|
||
| <!-- Supported attributes --> | ||
| <!-- Supported Attributes --> | ||
| name="" <!-- The name for a dropdown combination box --> | ||
| size="" <!-- Specifies the number of available options --> | ||
| multiple <!-- Allows for multiple option selections --> | ||
|
|
@@ -144,7 +144,7 @@ <h1></h1> ... <h6></h6> <!-- All six levels of heading | |
|
|
||
| <object data=""></object> <!-- Describes and embed file type including audio, video, PDF's, images --> | ||
|
|
||
| <!-- Supported attributes --> | ||
| <!-- Supported Attributes --> | ||
| type="" <!-- Describes the type of media embedded --> | ||
| height="" <!-- Describes the height of the object in pixels --> | ||
| width="" <!-- Describes the width of the object in pixels --> | ||
|
|
@@ -182,12 +182,12 @@ <h1></h1> ... <h6></h6> <!-- All six levels of heading | |
| <time></time> <!-- Identifies the time and date --> | ||
| <wbr> <!-- A line break within the content --> | ||
|
|
||
| <!-- Some other useful tags --> | ||
| <!-- Some Other Useful Tags --> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why capitalize every word?
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All the comments / section headers should either be capitalised or lowercased for consistency, I think. |
||
|
|
||
| <canvas></canvas> <!-- Allows to draw 2D shapes on the web page with the help of javascript --> | ||
| <map></map> <!-- Specifies an image map --> | ||
|
|
||
| <!-- Collective Character Obejcts --> | ||
| <!-- Collective Character Objects --> | ||
|
|
||
|
|
||
| " " Quotation Marks - " | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why the capitalization here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The comments on L7, L16, L26, L37, etc. are also capitalised - I've updated these comments to match the rest of the page.