Compare commits

...

2 Commits

Author SHA1 Message Date
Daniel Wilson
1e3506c9f0 Merge 5279160099 into 88e5be6e4b 2024-11-18 10:16:54 +00:00
Daniel Wilson
5279160099 Update html5.html
Just formatting and typo fixes
2024-11-18 10:16:34 +00:00

View File

@@ -6,9 +6,9 @@
<!-- Document Summary --> <!-- Document Summary -->
<!DOCTYPE html> <!-- Tells the browser that HTML5 version of HTML to be recognized by the browser --> <!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, --> <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 --> <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 --> <title></title> <!-- Title for the page that shows up in the browser title bar -->
<body></body> <!-- Content that the user will see --> <body></body> <!-- Content that the user will see -->
@@ -16,9 +16,9 @@
<!-- Document Information --> <!-- 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 --> <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 --> <script></script> <!-- Contains all scripts internal or external -->
<link/> <!-- Used to create relationships with external pages and stylesheets --> <link/> <!-- Used to create relationships with external pages and stylesheets -->
@@ -26,7 +26,7 @@
<!-- Document Structure --> <!-- 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 --> <p></p> <!-- Used to organize paragraph text -->
<div></div> <!-- A generic container used to denote a page section --> <div></div> <!-- A generic container used to denote a page section -->
<span></span> <!-- Inline section or block container used for creating inline style elements --> <span></span> <!-- Inline section or block container used for creating inline style elements -->
@@ -56,7 +56,7 @@
<!-- Links Formatting --> <!-- 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@example.com"></a> <!-- Used to link to an email address --> <a href="mailto:email@example.com"></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 a document element -->
<a href="#name"></a> <!-- Used to link to specific div element --> <a href="#name"></a> <!-- Used to link to specific div element -->
@@ -87,7 +87,7 @@
<!-- Supported attributes --> <!-- Supported attributes -->
method="somefunction()" <!-- Contains the type of request (GET, POST... etc) which dictates how to send the data of the form --> 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 --> autocomplete="" <!-- Specifies if the autocomplete functionality is enabled or not -->
novalidate <!-- Dictates if the form will be validated or not --> novalidate <!-- Dictates if the form will be validated or not -->
accept-charset="" <!-- Identifies the character encoding upon form submission --> accept-charset="" <!-- Identifies the character encoding upon form submission -->
@@ -120,7 +120,7 @@ multiple <!-- Allows for multiple optio
required <!-- Requires that a value is selected before submitting the form --> required <!-- Requires that a value is selected before submitting the form -->
autofocus <!-- Specifies that the dropdown automatically comes to focus once the page loads --> autofocus <!-- Specifies that the dropdown automatically comes to focus once the page loads -->
<optgroup></optgroup> <!-- Specifies the entire grouping of available options --> <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 availlble options from the dropdown list -->
<button></button> <!-- A clickable button to submit the form --> <button></button> <!-- A clickable button to submit the form -->
@@ -142,7 +142,7 @@ autofocus <!-- Specifies that the dropdo
<!-- Objects and iFrames --> <!-- 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 --> <!-- Supported attributes -->
type="" <!-- Describes the type of media embedded --> type="" <!-- Describes the type of media embedded -->