Typo and rewrote phrase about hypertext links (#126)

This commit is contained in:
Fabien SHAN
2018-06-03 22:42:13 +12:00
committed by Mrugesh Mohapatra
parent 9f8731ee51
commit 4227328601

View File

@ -11,7 +11,7 @@ For example:
```html ```html
<h1>Top level heading: Maybe a page title</h1> <h1>Top level heading: Maybe a page title</h1>
<p>A paragragh of text. Some information we would like to communicate to the viewer. This can be as long or short as we would like.</p> <p>A paragraph of text. Some information we would like to communicate to the viewer. This can be as long or short as we would like.</p>
<ol> <ol>
<li>Number one on the list</li> <li>Number one on the list</li>
@ -24,7 +24,7 @@ Becomes:
<h1>Top level heading: Maybe a page title</h1> <h1>Top level heading: Maybe a page title</h1>
<p>A paragragh of text. Some information we would like to communicate to the user. This can be as long or short as we would like.</p> <p>A paragraph of text. Some information we would like to communicate to the user. This can be as long or short as we would like.</p>
<ol> <ol>
<li>Number one on the list</li> <li>Number one on the list</li>
@ -33,7 +33,7 @@ Becomes:
</ol> </ol>
--- ---
The HyperText part of HTML comes from the early days of the web and its original use case. Pages usually contained static documents that contained references to other documents. These references contained hypertext links the would navigate the browser to the reference document so the user could read the reference document without having to manually search for it. The HyperText part of HTML comes from the early days of the web and its original use case. Pages usually contained static documents that contained references to other documents. These references contained hypertext links used by the browser to navigate to the reference document so the user could read the reference document without having to manually search for it.
As web pages and web applications grow more complex, the W3 Consortium updates the HTML specification to ensure that a webpage can be shown reliably on any browser. The latest version of HTML is HTML5. As web pages and web applications grow more complex, the W3 Consortium updates the HTML specification to ensure that a webpage can be shown reliably on any browser. The latest version of HTML is HTML5.