Update hyperlinks presentation slide

This commit is contained in:
Matthew Grove
2018-12-10 07:40:40 +00:00
parent 71ce339091
commit 51087fd4d2

View File

@@ -19,13 +19,13 @@
<body> <body>
<h2>Hyperlinks</h2> <h2>Hyperlinks</h2>
<p> <p>
A hyperlink is simply a link on the web to some other resource. It uses a special kind of command that jumps you to some other content in your web browser, usually to another page.  A hyperlink is simply a link on the web to another resource. It uses a special kind of command that jumps you to different content in your web browser - usually to another page. 
<br> <br>
The way to tell if something is a hyperlink is by seeing if your mouse becomes a pointing hand when hovering over it. It is also usually either displayed as blue underlined text or an image/advert. However, the appearance does not change the function. Hyperlink are often denoted by blue underlined text or content which turns the cursor into a pointing hand when hovered over; however, they can be styled however the web designer wishes; their appearances do not change their function.
<br> <br>
Some website owners wish to reserve the right to not be hyperlinked without permission. Website owners reserve the right not to be hyperlinked without permission.
<br> <br>
Creating a hyperlink in html: Hyperlinks are defined in HTML as follows:
<code>&lt;a href="LINK GOES HERE"&gt;TEXT GOES HERE&lt;/a&gt;</code> <code>&lt;a href="LINK GOES HERE"&gt;TEXT GOES HERE&lt;/a&gt;</code>
</p> </p>
</body> </body>