SlideShare a Scribd company logo
HTML Hyperlinks and HTML
Bookmarks
Presented by Nobel Mujuji
(BSc Hons Information Systems )(WUA)
Html links
Links are found in nearly all web pages. Links allow users to click their way from page to page.
HTML links are hyperlinks.
A hyperlink is an element, a text, or an image that you can click on, and jump to another
document.
HTML Links - Syntax
In HTML, links are defined with the <a> tag:
Link Syntax:
<a href="url">link text</a>
challenge
<html>
<body>
<p>
<a href=“www.facebook.com/Nokur technologies">visit us on
facebook</a>
</p>
</body>
</html>
• The href attribute specifies the destination page/ address
(www.facebook.com/Nokur technologies)
• The link text is the visible part (visit us on facebook).
Local Links
• The example above used an absolute URL (A full web address).
• A local link (link to the same web site) is specified with a relative URL
(without http://www....).
<a href="html_images.asp">HTML Images</a>
HTML Links - Colors and Icons
HTML Links - Colors and Icons
When you move the mouse cursor over a link, two things will normally happen:
1. The mouse arrow will turn into a little hand
2. The color of the link element will change
3. By default, links will appear as this in all browsers:
1. An unvisited link is underlined and blue
2. A visited link is underlined and purple
3. An active link is underlined and red
4. You can change the defaults, using styles:
The following are some of the things a
hyperlink can link to
Function Sample Code
Web Page or Site
<a
href="http://www.webaddress.com/folder/page">Hyp
erlink Text</a>
Local Page <a href="pagename.html">Hyperlink Text</a>
Local Page in a Folder level Below
<a href="foldername/pagename.html">Hyperlink
Text</a>
Local Page in a Folder level Above <a href="../pagename.html">Hyperlink Text</a>
Open E-mail Program with E-mail address
<a
href="mailto:yourname@yourname.com">Hyperlink
Text</a>
Bookmarked Section <a href="#bookmarkname"></a>
Bookmarked Section in Another Page
<a
href="pagelocation.htm#bookmarkname">Hyperlink
Text</a>
html - email links
• Creating an email link is simple. If you want people to mail you about
your site, a good way to do it is place an email link with a subject line
already filled out for them.
• HTML Email Link Code:
• <a href="mailto:email@gmail.com?subject=Feedback" >email
me</a>
First web project
NB create a folder name it SA Flag project
*Save all your pages in this folder as follows(folder should contain 7 pages as follows)
1. Home.html
2. Black.html
3. Yellow.html
4. Blue.html
5. Red.html
6. White.html
7. Green.html
Home.html
<hr size="10" noshade color=blue>
<center><h1><font color="red"> WELCOME TO SOUTH
AFRICA</H1></FONT></center>
<center>
<hr size="10" noshade color=green>
<a href="green.html"> green page| </a>
<a href="red.html"> red page| </a>
<a href="yellow.html"> yellow page| </a>
<a href="black.html"> black page| </a>
<a href="blue.html"> blue page| </a>
<a href="white.html"> white page|</a></center>
Black.html
<a href=“home.html"> go to home page| </a>
<body bgcolor=“black”>
Yellow.html
<a href=“home.html"> go to home page| </a>
<body bgcolor=“yellow”>
Blue.html
<a href=“home.html"> go to home page| </a>
<body bgcolor=“blue”>
Red.html
<a href=“home.html"> go to home page| </a>
<body bgcolor=“black”>
White.html
<a href=“home.html"> go to home page| </a>
<body bgcolor=“white”>
Green.html
<a href=“home.html"> go to home page| </a>
<body bgcolor=“green”>
An Image Link
• Here's an image. Its name is sally.gif. I will use it as a link to the HTML
Goodies page.
• To replace the text above with the sally.gif image, you simply replace
the text that would appear on the page with an image command
calling for the sally.gif image. Like so:
<A HREF="index.html"><IMG SRC="sally.gif"></A>
The HTML <hr> tag also supports following
attributes:
Attribute Value Description
align left
right
center
Deprecated-Specifies the alignment of the horizontal rule.
noshade noshade Deprecated-Removes the usual shading effect that most
browsers display.
size pixels or % Deprecated-Specifies the height of the horizontal rule.
width pixels or % Deprecated-Specifies the width of the horizontal rule.

More Related Content

What's hot

Html n CSS
Html n CSSHtml n CSS
Html n CSS
Sukrit Gupta
 
html forms
html formshtml forms
html forms
ikram niaz
 
Html
HtmlHtml
Lesson 1: Introduction to HTML
Lesson 1: Introduction to HTMLLesson 1: Introduction to HTML
Lesson 1: Introduction to HTML
Olivia Moran
 
Html Study Guide
Html Study GuideHtml Study Guide
Html Study Guide
vergetec
 
Html links
Html linksHtml links
Html links
JayjZens
 
Web html table tags
Web html  table tagsWeb html  table tags
Web html table tags
Kainat Ilyas
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
Ajay Khatri
 
Html Presentation
Html PresentationHtml Presentation
Html Presentation
RahulSuri30
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
Nisa Soomro
 
HTML
HTMLHTML
Basic html
Basic htmlBasic html
Html Slide Part-1
Html Slide Part-1Html Slide Part-1
Html Slide Part-1
AAKASH KUMAR
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
Ravinder Kamboj
 
Images and Tables in HTML
Images and Tables in HTMLImages and Tables in HTML
Images and Tables in HTMLAarti P
 
HTML
HTMLHTML

What's hot (20)

Html
HtmlHtml
Html
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Html presentation
Html presentationHtml presentation
Html presentation
 
Html n CSS
Html n CSSHtml n CSS
Html n CSS
 
html forms
html formshtml forms
html forms
 
Html
HtmlHtml
Html
 
Html
HtmlHtml
Html
 
Lesson 1: Introduction to HTML
Lesson 1: Introduction to HTMLLesson 1: Introduction to HTML
Lesson 1: Introduction to HTML
 
Html Study Guide
Html Study GuideHtml Study Guide
Html Study Guide
 
Html links
Html linksHtml links
Html links
 
Web html table tags
Web html  table tagsWeb html  table tags
Web html table tags
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Html Presentation
Html PresentationHtml Presentation
Html Presentation
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
 
HTML
HTMLHTML
HTML
 
Basic html
Basic htmlBasic html
Basic html
 
Html Slide Part-1
Html Slide Part-1Html Slide Part-1
Html Slide Part-1
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
 
Images and Tables in HTML
Images and Tables in HTMLImages and Tables in HTML
Images and Tables in HTML
 
HTML
HTMLHTML
HTML
 

Viewers also liked

Hyperlinks in HTML
Hyperlinks in HTMLHyperlinks in HTML
Hyperlinks in HTMLAarti P
 
How to make a hyperlink in HTML code
How to make a hyperlink in HTML codeHow to make a hyperlink in HTML code
How to make a hyperlink in HTML code
Stacie Elliot
 
HTML a Element: Link to External Page
HTML a Element: Link to External PageHTML a Element: Link to External Page
HTML a Element: Link to External Page
lhosford
 
Working with HTML Lists
Working with HTML ListsWorking with HTML Lists
Working with HTML Lists
Ray Villalobos
 
HTML Link - Image - Comments
HTML  Link - Image - CommentsHTML  Link - Image - Comments
HTML Link - Image - Comments
Hameda Hurmat
 
Anchor tag HTML Presentation
Anchor tag HTML PresentationAnchor tag HTML Presentation
Anchor tag HTML Presentation
Nimish Gupta
 
Html images and html backgrounds
Html images and html backgroundsHtml images and html backgrounds
Html images and html backgrounds
nobel mujuji
 
List and images in html
List and images in htmlList and images in html
List and images in html
prithvisawla
 
Images and Lists in HTML
Images and Lists in HTMLImages and Lists in HTML
Images and Lists in HTML
Marlon Jamera
 

Viewers also liked (15)

Hyperlinks in HTML
Hyperlinks in HTMLHyperlinks in HTML
Hyperlinks in HTML
 
Reflexion
ReflexionReflexion
Reflexion
 
How to make a hyperlink in HTML code
How to make a hyperlink in HTML codeHow to make a hyperlink in HTML code
How to make a hyperlink in HTML code
 
HTML
HTMLHTML
HTML
 
HTML a Element: Link to External Page
HTML a Element: Link to External PageHTML a Element: Link to External Page
HTML a Element: Link to External Page
 
Links - IntraPage
Links - IntraPageLinks - IntraPage
Links - IntraPage
 
Html links
Html linksHtml links
Html links
 
Working with HTML Lists
Working with HTML ListsWorking with HTML Lists
Working with HTML Lists
 
HTML Link - Image - Comments
HTML  Link - Image - CommentsHTML  Link - Image - Comments
HTML Link - Image - Comments
 
Links in Html
Links in HtmlLinks in Html
Links in Html
 
LINKING IN HTML
LINKING IN HTMLLINKING IN HTML
LINKING IN HTML
 
Anchor tag HTML Presentation
Anchor tag HTML PresentationAnchor tag HTML Presentation
Anchor tag HTML Presentation
 
Html images and html backgrounds
Html images and html backgroundsHtml images and html backgrounds
Html images and html backgrounds
 
List and images in html
List and images in htmlList and images in html
List and images in html
 
Images and Lists in HTML
Images and Lists in HTMLImages and Lists in HTML
Images and Lists in HTML
 

Similar to Html hyperlinks

Unit 2 (html)
Unit 2  (html)Unit 2  (html)
Unit 2 (html)
manochitra10
 
Web Design.ppt
Web Design.pptWeb Design.ppt
Web Design.ppt
Dr.R.SUGANYA RENGARAJ
 
html
htmlhtml
html
tumetr1
 
Basic HTML Tutorial For Beginners
Basic HTML Tutorial For BeginnersBasic HTML Tutorial For Beginners
Basic HTML Tutorial For Beginners
DHTMLExtreme
 
Java script and html
Java script and htmlJava script and html
Java script and html
Malik M. Ali Shahid
 
Java script and html new
Java script and html newJava script and html new
Java script and html new
Malik M. Ali Shahid
 
Html
HtmlHtml
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2
mmvidanes29
 
Lesson 8 Computer Creating your Website.pdf
Lesson 8 Computer Creating your Website.pdfLesson 8 Computer Creating your Website.pdf
Lesson 8 Computer Creating your Website.pdf
AshleyJovelClavecill
 
HTML
HTMLHTML
HTML by Telerik Akademy
HTML by Telerik AkademyHTML by Telerik Akademy
HTML by Telerik AkademyOgnyan Penkov
 
Html for beginners part II
Html for beginners part IIHtml for beginners part II
Html for beginners part II
Unaib Aslam
 
1-22-24 INFO 2106.pptx
1-22-24 INFO 2106.pptx1-22-24 INFO 2106.pptx
1-22-24 INFO 2106.pptx
MattMarino13
 
Html project report12
Html project report12Html project report12
Html project report12varunmaini123
 
BITM3730Week1.pptx
BITM3730Week1.pptxBITM3730Week1.pptx
BITM3730Week1.pptx
MattMarino13
 
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvvLecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
ZahouAmel1
 
02- Links, Structure and Layout with HTML.pdf
02- Links, Structure and Layout with HTML.pdf02- Links, Structure and Layout with HTML.pdf
02- Links, Structure and Layout with HTML.pdf
thkbmb4rb4
 

Similar to Html hyperlinks (20)

Unit 2 (html)
Unit 2  (html)Unit 2  (html)
Unit 2 (html)
 
Web Design.ppt
Web Design.pptWeb Design.ppt
Web Design.ppt
 
html
htmlhtml
html
 
Basic HTML Tutorial For Beginners
Basic HTML Tutorial For BeginnersBasic HTML Tutorial For Beginners
Basic HTML Tutorial For Beginners
 
Java script and html
Java script and htmlJava script and html
Java script and html
 
Java script and html new
Java script and html newJava script and html new
Java script and html new
 
Html
HtmlHtml
Html
 
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2
 
Html
HtmlHtml
Html
 
Lesson 8 Computer Creating your Website.pdf
Lesson 8 Computer Creating your Website.pdfLesson 8 Computer Creating your Website.pdf
Lesson 8 Computer Creating your Website.pdf
 
HTML
HTMLHTML
HTML
 
Html
HtmlHtml
Html
 
HTML by Telerik Akademy
HTML by Telerik AkademyHTML by Telerik Akademy
HTML by Telerik Akademy
 
Html for beginners part II
Html for beginners part IIHtml for beginners part II
Html for beginners part II
 
1-22-24 INFO 2106.pptx
1-22-24 INFO 2106.pptx1-22-24 INFO 2106.pptx
1-22-24 INFO 2106.pptx
 
Khoa dang (kay)
Khoa dang (kay)Khoa dang (kay)
Khoa dang (kay)
 
Html project report12
Html project report12Html project report12
Html project report12
 
BITM3730Week1.pptx
BITM3730Week1.pptxBITM3730Week1.pptx
BITM3730Week1.pptx
 
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvvLecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
 
02- Links, Structure and Layout with HTML.pdf
02- Links, Structure and Layout with HTML.pdf02- Links, Structure and Layout with HTML.pdf
02- Links, Structure and Layout with HTML.pdf
 

More from nobel mujuji

Table structure introduction
Table structure introductionTable structure introduction
Table structure introduction
nobel mujuji
 
Positioning text
Positioning textPositioning text
Positioning text
nobel mujuji
 
Inserting imagesin html
Inserting imagesin htmlInserting imagesin html
Inserting imagesin html
nobel mujuji
 
Html frames
Html framesHtml frames
Html frames
nobel mujuji
 
Html forms
Html formsHtml forms
Html forms
nobel mujuji
 
Html character entities
Html character entitiesHtml character entities
Html character entities
nobel mujuji
 
Horizontal lines!
Horizontal lines!Horizontal lines!
Horizontal lines!
nobel mujuji
 
Frames tables forms
Frames tables formsFrames tables forms
Frames tables forms
nobel mujuji
 
Creating lists
Creating listsCreating lists
Creating lists
nobel mujuji
 
Chapter 2 introduction to html5
Chapter 2 introduction to html5Chapter 2 introduction to html5
Chapter 2 introduction to html5
nobel mujuji
 
Chapter 1 one html
Chapter 1 one htmlChapter 1 one html
Chapter 1 one html
nobel mujuji
 
Chapter 1 html
Chapter 1 htmlChapter 1 html
Chapter 1 html
nobel mujuji
 
Adding text in html
Adding text in htmlAdding text in html
Adding text in html
nobel mujuji
 
Javascript conditional statements
Javascript conditional statementsJavascript conditional statements
Javascript conditional statements
nobel mujuji
 

More from nobel mujuji (14)

Table structure introduction
Table structure introductionTable structure introduction
Table structure introduction
 
Positioning text
Positioning textPositioning text
Positioning text
 
Inserting imagesin html
Inserting imagesin htmlInserting imagesin html
Inserting imagesin html
 
Html frames
Html framesHtml frames
Html frames
 
Html forms
Html formsHtml forms
Html forms
 
Html character entities
Html character entitiesHtml character entities
Html character entities
 
Horizontal lines!
Horizontal lines!Horizontal lines!
Horizontal lines!
 
Frames tables forms
Frames tables formsFrames tables forms
Frames tables forms
 
Creating lists
Creating listsCreating lists
Creating lists
 
Chapter 2 introduction to html5
Chapter 2 introduction to html5Chapter 2 introduction to html5
Chapter 2 introduction to html5
 
Chapter 1 one html
Chapter 1 one htmlChapter 1 one html
Chapter 1 one html
 
Chapter 1 html
Chapter 1 htmlChapter 1 html
Chapter 1 html
 
Adding text in html
Adding text in htmlAdding text in html
Adding text in html
 
Javascript conditional statements
Javascript conditional statementsJavascript conditional statements
Javascript conditional statements
 

Recently uploaded

PORTFOLIO FABIANA VILLANI ARCHITECTURE.pdf
PORTFOLIO FABIANA VILLANI ARCHITECTURE.pdfPORTFOLIO FABIANA VILLANI ARCHITECTURE.pdf
PORTFOLIO FABIANA VILLANI ARCHITECTURE.pdf
fabianavillanib
 
一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理
一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理
一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理
7sd8fier
 
一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证成绩单如何办理
一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证成绩单如何办理一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证成绩单如何办理
一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证成绩单如何办理
n0tivyq
 
RTUYUIJKLDSADAGHBDJNKSMAL,D
RTUYUIJKLDSADAGHBDJNKSMAL,DRTUYUIJKLDSADAGHBDJNKSMAL,D
RTUYUIJKLDSADAGHBDJNKSMAL,D
cy0krjxt
 
Common Designing Mistakes and How to avoid them
Common Designing Mistakes and How to avoid themCommon Designing Mistakes and How to avoid them
Common Designing Mistakes and How to avoid them
madhavlakhanpal29
 
Design Thinking Design thinking Design thinking
Design Thinking Design thinking Design thinkingDesign Thinking Design thinking Design thinking
Design Thinking Design thinking Design thinking
cy0krjxt
 
20 slides of research movie and artists .pdf
20 slides of research movie and artists .pdf20 slides of research movie and artists .pdf
20 slides of research movie and artists .pdf
ameli25062005
 
Portfolio.pdf
Portfolio.pdfPortfolio.pdf
Portfolio.pdf
garcese
 
一比一原版(UCB毕业证书)伯明翰大学学院毕业证成绩单如何办理
一比一原版(UCB毕业证书)伯明翰大学学院毕业证成绩单如何办理一比一原版(UCB毕业证书)伯明翰大学学院毕业证成绩单如何办理
一比一原版(UCB毕业证书)伯明翰大学学院毕业证成绩单如何办理
h7j5io0
 
一比一原版(BU毕业证书)伯恩茅斯大学毕业证成绩单如何办理
一比一原版(BU毕业证书)伯恩茅斯大学毕业证成绩单如何办理一比一原版(BU毕业证书)伯恩茅斯大学毕业证成绩单如何办理
一比一原版(BU毕业证书)伯恩茅斯大学毕业证成绩单如何办理
h7j5io0
 
一比一原版(毕业证)长崎大学毕业证成绩单如何办理
一比一原版(毕业证)长崎大学毕业证成绩单如何办理一比一原版(毕业证)长崎大学毕业证成绩单如何办理
一比一原版(毕业证)长崎大学毕业证成绩单如何办理
taqyed
 
一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理
一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理
一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理
jyz59f4j
 
一比一原版(MMU毕业证书)曼彻斯特城市大学毕业证成绩单如何办理
一比一原版(MMU毕业证书)曼彻斯特城市大学毕业证成绩单如何办理一比一原版(MMU毕业证书)曼彻斯特城市大学毕业证成绩单如何办理
一比一原版(MMU毕业证书)曼彻斯特城市大学毕业证成绩单如何办理
7sd8fier
 
Book Formatting: Quality Control Checks for Designers
Book Formatting: Quality Control Checks for DesignersBook Formatting: Quality Control Checks for Designers
Book Formatting: Quality Control Checks for Designers
Confidence Ago
 
National-Learning-Camp 2024 deped....pptx
National-Learning-Camp 2024 deped....pptxNational-Learning-Camp 2024 deped....pptx
National-Learning-Camp 2024 deped....pptx
AlecAnidul
 
一比一原版(UNUK毕业证书)诺丁汉大学毕业证如何办理
一比一原版(UNUK毕业证书)诺丁汉大学毕业证如何办理一比一原版(UNUK毕业证书)诺丁汉大学毕业证如何办理
一比一原版(UNUK毕业证书)诺丁汉大学毕业证如何办理
7sd8fier
 
一比一原版(RHUL毕业证书)伦敦大学皇家霍洛威学院毕业证如何办理
一比一原版(RHUL毕业证书)伦敦大学皇家霍洛威学院毕业证如何办理一比一原版(RHUL毕业证书)伦敦大学皇家霍洛威学院毕业证如何办理
一比一原版(RHUL毕业证书)伦敦大学皇家霍洛威学院毕业证如何办理
9a93xvy
 
一比一原版(CITY毕业证书)谢菲尔德哈勒姆大学毕业证如何办理
一比一原版(CITY毕业证书)谢菲尔德哈勒姆大学毕业证如何办理一比一原版(CITY毕业证书)谢菲尔德哈勒姆大学毕业证如何办理
一比一原版(CITY毕业证书)谢菲尔德哈勒姆大学毕业证如何办理
9a93xvy
 
Design Thinking Design thinking Design thinking
Design Thinking Design thinking Design thinkingDesign Thinking Design thinking Design thinking
Design Thinking Design thinking Design thinking
cy0krjxt
 
White wonder, Work developed by Eva Tschopp
White wonder, Work developed by Eva TschoppWhite wonder, Work developed by Eva Tschopp
White wonder, Work developed by Eva Tschopp
Mansi Shah
 

Recently uploaded (20)

PORTFOLIO FABIANA VILLANI ARCHITECTURE.pdf
PORTFOLIO FABIANA VILLANI ARCHITECTURE.pdfPORTFOLIO FABIANA VILLANI ARCHITECTURE.pdf
PORTFOLIO FABIANA VILLANI ARCHITECTURE.pdf
 
一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理
一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理
一比一原版(NCL毕业证书)纽卡斯尔大学毕业证成绩单如何办理
 
一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证成绩单如何办理
一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证成绩单如何办理一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证成绩单如何办理
一比一原版(Glasgow毕业证书)格拉斯哥大学毕业证成绩单如何办理
 
RTUYUIJKLDSADAGHBDJNKSMAL,D
RTUYUIJKLDSADAGHBDJNKSMAL,DRTUYUIJKLDSADAGHBDJNKSMAL,D
RTUYUIJKLDSADAGHBDJNKSMAL,D
 
Common Designing Mistakes and How to avoid them
Common Designing Mistakes and How to avoid themCommon Designing Mistakes and How to avoid them
Common Designing Mistakes and How to avoid them
 
Design Thinking Design thinking Design thinking
Design Thinking Design thinking Design thinkingDesign Thinking Design thinking Design thinking
Design Thinking Design thinking Design thinking
 
20 slides of research movie and artists .pdf
20 slides of research movie and artists .pdf20 slides of research movie and artists .pdf
20 slides of research movie and artists .pdf
 
Portfolio.pdf
Portfolio.pdfPortfolio.pdf
Portfolio.pdf
 
一比一原版(UCB毕业证书)伯明翰大学学院毕业证成绩单如何办理
一比一原版(UCB毕业证书)伯明翰大学学院毕业证成绩单如何办理一比一原版(UCB毕业证书)伯明翰大学学院毕业证成绩单如何办理
一比一原版(UCB毕业证书)伯明翰大学学院毕业证成绩单如何办理
 
一比一原版(BU毕业证书)伯恩茅斯大学毕业证成绩单如何办理
一比一原版(BU毕业证书)伯恩茅斯大学毕业证成绩单如何办理一比一原版(BU毕业证书)伯恩茅斯大学毕业证成绩单如何办理
一比一原版(BU毕业证书)伯恩茅斯大学毕业证成绩单如何办理
 
一比一原版(毕业证)长崎大学毕业证成绩单如何办理
一比一原版(毕业证)长崎大学毕业证成绩单如何办理一比一原版(毕业证)长崎大学毕业证成绩单如何办理
一比一原版(毕业证)长崎大学毕业证成绩单如何办理
 
一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理
一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理
一比一原版(LSE毕业证书)伦敦政治经济学院毕业证成绩单如何办理
 
一比一原版(MMU毕业证书)曼彻斯特城市大学毕业证成绩单如何办理
一比一原版(MMU毕业证书)曼彻斯特城市大学毕业证成绩单如何办理一比一原版(MMU毕业证书)曼彻斯特城市大学毕业证成绩单如何办理
一比一原版(MMU毕业证书)曼彻斯特城市大学毕业证成绩单如何办理
 
Book Formatting: Quality Control Checks for Designers
Book Formatting: Quality Control Checks for DesignersBook Formatting: Quality Control Checks for Designers
Book Formatting: Quality Control Checks for Designers
 
National-Learning-Camp 2024 deped....pptx
National-Learning-Camp 2024 deped....pptxNational-Learning-Camp 2024 deped....pptx
National-Learning-Camp 2024 deped....pptx
 
一比一原版(UNUK毕业证书)诺丁汉大学毕业证如何办理
一比一原版(UNUK毕业证书)诺丁汉大学毕业证如何办理一比一原版(UNUK毕业证书)诺丁汉大学毕业证如何办理
一比一原版(UNUK毕业证书)诺丁汉大学毕业证如何办理
 
一比一原版(RHUL毕业证书)伦敦大学皇家霍洛威学院毕业证如何办理
一比一原版(RHUL毕业证书)伦敦大学皇家霍洛威学院毕业证如何办理一比一原版(RHUL毕业证书)伦敦大学皇家霍洛威学院毕业证如何办理
一比一原版(RHUL毕业证书)伦敦大学皇家霍洛威学院毕业证如何办理
 
一比一原版(CITY毕业证书)谢菲尔德哈勒姆大学毕业证如何办理
一比一原版(CITY毕业证书)谢菲尔德哈勒姆大学毕业证如何办理一比一原版(CITY毕业证书)谢菲尔德哈勒姆大学毕业证如何办理
一比一原版(CITY毕业证书)谢菲尔德哈勒姆大学毕业证如何办理
 
Design Thinking Design thinking Design thinking
Design Thinking Design thinking Design thinkingDesign Thinking Design thinking Design thinking
Design Thinking Design thinking Design thinking
 
White wonder, Work developed by Eva Tschopp
White wonder, Work developed by Eva TschoppWhite wonder, Work developed by Eva Tschopp
White wonder, Work developed by Eva Tschopp
 

Html hyperlinks

  • 1. HTML Hyperlinks and HTML Bookmarks Presented by Nobel Mujuji (BSc Hons Information Systems )(WUA)
  • 2. Html links Links are found in nearly all web pages. Links allow users to click their way from page to page. HTML links are hyperlinks. A hyperlink is an element, a text, or an image that you can click on, and jump to another document. HTML Links - Syntax In HTML, links are defined with the <a> tag: Link Syntax: <a href="url">link text</a>
  • 4. • The href attribute specifies the destination page/ address (www.facebook.com/Nokur technologies) • The link text is the visible part (visit us on facebook).
  • 5. Local Links • The example above used an absolute URL (A full web address). • A local link (link to the same web site) is specified with a relative URL (without http://www....). <a href="html_images.asp">HTML Images</a>
  • 6. HTML Links - Colors and Icons HTML Links - Colors and Icons When you move the mouse cursor over a link, two things will normally happen: 1. The mouse arrow will turn into a little hand 2. The color of the link element will change 3. By default, links will appear as this in all browsers: 1. An unvisited link is underlined and blue 2. A visited link is underlined and purple 3. An active link is underlined and red 4. You can change the defaults, using styles:
  • 7. The following are some of the things a hyperlink can link to Function Sample Code Web Page or Site <a href="http://www.webaddress.com/folder/page">Hyp erlink Text</a> Local Page <a href="pagename.html">Hyperlink Text</a> Local Page in a Folder level Below <a href="foldername/pagename.html">Hyperlink Text</a> Local Page in a Folder level Above <a href="../pagename.html">Hyperlink Text</a> Open E-mail Program with E-mail address <a href="mailto:yourname@yourname.com">Hyperlink Text</a> Bookmarked Section <a href="#bookmarkname"></a> Bookmarked Section in Another Page <a href="pagelocation.htm#bookmarkname">Hyperlink Text</a>
  • 8. html - email links • Creating an email link is simple. If you want people to mail you about your site, a good way to do it is place an email link with a subject line already filled out for them. • HTML Email Link Code: • <a href="mailto:email@gmail.com?subject=Feedback" >email me</a>
  • 9. First web project NB create a folder name it SA Flag project *Save all your pages in this folder as follows(folder should contain 7 pages as follows) 1. Home.html 2. Black.html 3. Yellow.html 4. Blue.html 5. Red.html 6. White.html 7. Green.html
  • 10. Home.html <hr size="10" noshade color=blue> <center><h1><font color="red"> WELCOME TO SOUTH AFRICA</H1></FONT></center> <center> <hr size="10" noshade color=green> <a href="green.html"> green page| </a> <a href="red.html"> red page| </a> <a href="yellow.html"> yellow page| </a> <a href="black.html"> black page| </a> <a href="blue.html"> blue page| </a> <a href="white.html"> white page|</a></center>
  • 11. Black.html <a href=“home.html"> go to home page| </a> <body bgcolor=“black”>
  • 12. Yellow.html <a href=“home.html"> go to home page| </a> <body bgcolor=“yellow”>
  • 13. Blue.html <a href=“home.html"> go to home page| </a> <body bgcolor=“blue”>
  • 14. Red.html <a href=“home.html"> go to home page| </a> <body bgcolor=“black”>
  • 15. White.html <a href=“home.html"> go to home page| </a> <body bgcolor=“white”>
  • 16. Green.html <a href=“home.html"> go to home page| </a> <body bgcolor=“green”>
  • 17. An Image Link • Here's an image. Its name is sally.gif. I will use it as a link to the HTML Goodies page. • To replace the text above with the sally.gif image, you simply replace the text that would appear on the page with an image command calling for the sally.gif image. Like so: <A HREF="index.html"><IMG SRC="sally.gif"></A>
  • 18. The HTML <hr> tag also supports following attributes: Attribute Value Description align left right center Deprecated-Specifies the alignment of the horizontal rule. noshade noshade Deprecated-Removes the usual shading effect that most browsers display. size pixels or % Deprecated-Specifies the height of the horizontal rule. width pixels or % Deprecated-Specifies the width of the horizontal rule.