24 lines
1.1 KiB
HTML
24 lines
1.1 KiB
HTML
<!-- Reading School 2018, HTML page by Matthew Grove, Year 10 -->
|
||
<!DOCTYPE html>
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0">
|
||
|
||
<!-- styles -->
|
||
<!-- <link rel="stylesheet" type="text/css" href="../css/pages.css"> -->
|
||
|
||
<!-- scripts -->
|
||
<!-- <script type="text/javascript" src="../scripts/scripts.js"></script> -->
|
||
</head>
|
||
<body>
|
||
<h1>Hyperlinks</h1>
|
||
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.
|
||
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.
|
||
Some website owners wish to reserve the right to not be hyperlinked without permission.
|
||
Creating a hyperlink in html:
|
||
<code><a href="LINK GOES HERE">TEXT GOES HERE</a></code>
|
||
</body>
|
||
</html>
|