Lecture 5 HTML Links & Lists
Lecture 5 HTML Links & Lists
Dr. Lupiana, D
FCIM, Institute of Finance Management
Semester 2
Agenda:
• HTML Links - Hyperlinks
• HTML Lists
HTML Links
• A hyperlink (or a link) is a text or an image you
can click on, and take you to another web
page or file
• In HTML, links are defined with the anchor
<a> tag followed by the href attribute.
<a href=“path”> link text </a>
1
5/20/2019
2
5/20/2019
<a href=“profile/about.html”>
About FCIM
</a>
<a href=“../index.html”>
Home
</a>
3
5/20/2019
10
10
11
11
12
12
4
5/20/2019
13
13
14
15
15
5
5/20/2019
16
16
<body>
<a href=“about.html” targer=“_blank”> About Us
</a>
</body>
17
17
18
6
5/20/2019
19
19
20
20
21
7
5/20/2019
22
23
23
24
24
8
5/20/2019
25
26
26