Skip to content
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

Formatting and typo fixes to html5.html #399

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions frontend/html5.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,27 +6,27 @@

<!-- 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 browser what type of document to expect. This specific declaration implies that the document uses HTML5, the latest version of HTML -->
<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 -->


<!-- Document Structure -->


<h1></h1> ... <h6></h6> <!-- All six levels of heading with 1 being the most promiment and 6 being the least prominent -->
<h1></h1> ... <h6></h6> <!-- All six levels of heading with 1 being the most prominent and 6 being the least prominent -->
<p></p> <!-- Used to organize paragraph text -->
<div></div> <!-- A generic container used to denote a page section -->
<span></span> <!-- Inline section or block container used for creating inline style elements -->
Expand All @@ -39,7 +39,7 @@ <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 -->
Expand All @@ -56,7 +56,7 @@ <h1></h1> ... <h6></h6> <!-- All six levels of heading
<!-- Links Formatting -->


<a href="url"></a> <!-- Used to link to external or internal pages of a wbesite -->
<a href="url"></a> <!-- Used to link to external or internal pages of a website -->
<a href="mailto:[email protected]"></a> <!-- Used to link to an email address -->
<a href="name"></a> <!-- Used to link to a document element -->
<a href="#name"></a> <!-- Used to link to specific div element -->
Expand Down Expand Up @@ -87,7 +87,7 @@ <h1></h1> ... <h6></h6> <!-- All six levels of heading

<!-- 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 -->
Expand Down Expand Up @@ -120,7 +120,7 @@ <h1></h1> ... <h6></h6> <!-- All six levels of heading
required <!-- Requires that a value is selected before submitting the form -->
autofocus <!-- Specifies that the dropdown automatically comes to focus once the page loads -->
<optgroup></optgroup> <!-- Specifies the entire grouping of available options -->
<option value=""></option> <!-- Defines one of the avaialble option from the dropdown list -->
<option value=""></option> <!-- Defines one of the available options from the dropdown list -->
<button></button> <!-- A clickable button to submit the form -->


Expand All @@ -142,7 +142,7 @@ <h1></h1> ... <h6></h6> <!-- All six levels of heading
<!-- Objects and iFrames -->


<object data=""></object> <!-- Describes and embed file type including audio, video, PDF's, images -->
<object data=""></object> <!-- Describes and embeds a file type including audio, video, PDF's, images -->

<!-- Supported attributes -->
type="" <!-- Describes the type of media embedded -->
Expand Down