Insert blog pages via jQuery .load(); Ensure presentation buttons don't have content between them; Improve styling
13 lines
740 B
HTML
13 lines
740 B
HTML
<!-- Reading School 2018, HTML page by Matthew Grove, Year 10 -->
|
||
<h3>Hyperlinks</h3>
|
||
<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.
|
||
<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.
|
||
<br>
|
||
Some website owners wish to reserve the right to not be hyperlinked without permission.
|
||
<br>
|
||
Creating a hyperlink in html:
|
||
<code><a href="LINK GOES HERE">TEXT GOES HERE</a></code>
|
||
</p>
|