-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtml_syntax.html
More file actions
20 lines (20 loc) · 786 Bytes
/
html_syntax.html
File metadata and controls
20 lines (20 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<h1>HTML</h1>
The <strong>language</strong> for <strong>building</strong> <em>web pages</em>
<br>
<h2>1. HTML Links</h2>
<br>
Links are found in nearly all web pages. Links allow users to click their way from page to page.
<br>
<ul><li><h3>HTML Links - Hyperlinks</h3></li></ul>
HTML links are hyperlinks.
<br>
You can click on a link and jump to another document.
<br>
When you move the mouse over a link, the mouse arrow will turn into a little hand.
<br>
<p style="background-color:lightgray;"><strong>Note:</strong> A link does not have to be text. A link can be an image or any other HTML element!</p>
<br>
<ul><li><h3>HTML Links - Syntax</h3></li></ul>
The HTML <a> tag defines a hyperlink. It has the following syntax:
<br>
<a href="url">link text</a>