SlideShare uma empresa Scribd logo
1 de 18
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.

Mais conteĂșdo relacionado

Mais procurados (20)

Html forms
Html formsHtml forms
Html forms
 
Html
HtmlHtml
Html
 
Dom
DomDom
Dom
 
Intro to HTML and CSS basics
Intro to HTML and CSS basicsIntro to HTML and CSS basics
Intro to HTML and CSS basics
 
CSS ppt
CSS pptCSS ppt
CSS ppt
 
Span and Div tags in HTML
Span and Div tags in HTMLSpan and Div tags in HTML
Span and Div tags in HTML
 
Html audio video
Html audio videoHtml audio video
Html audio video
 
CSS Lists and Tables
CSS Lists and TablesCSS Lists and Tables
CSS Lists and Tables
 
Hyperlinks in HTML
Hyperlinks in HTMLHyperlinks in HTML
Hyperlinks in HTML
 
CSS
CSSCSS
CSS
 
HTML Forms
HTML FormsHTML Forms
HTML Forms
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Html training slide
Html training slideHtml training slide
Html training slide
 
Basic html structure
Basic html structureBasic html structure
Basic html structure
 
HTML5
HTML5HTML5
HTML5
 
Links in Html
Links in HtmlLinks in Html
Links in Html
 
Web Development using HTML & CSS
Web Development using HTML & CSSWeb Development using HTML & CSS
Web Development using HTML & CSS
 
Html forms
Html formsHtml forms
Html forms
 
Html,javascript & css
Html,javascript & cssHtml,javascript & css
Html,javascript & css
 

Destaque

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 codeStacie 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 Pagelhosford
 
Links - IntraPage
Links - IntraPageLinks - IntraPage
Links - IntraPagenikkeisaurus
 
Html links
Html linksHtml links
Html linkseShikshak
 
Working with HTML Lists
Working with HTML ListsWorking with HTML Lists
Working with HTML ListsRay Villalobos
 
HTML Link - Image - Comments
HTML  Link - Image - CommentsHTML  Link - Image - Comments
HTML Link - Image - CommentsHameda Hurmat
 
LINKING IN HTML
LINKING IN HTMLLINKING IN HTML
LINKING IN HTMLVarsha Dubey
 
Anchor tag HTML Presentation
Anchor tag HTML PresentationAnchor tag HTML Presentation
Anchor tag HTML PresentationNimish Gupta
 
Html images and html backgrounds
Html images and html backgroundsHtml images and html backgrounds
Html images and html backgroundsnobel mujuji
 
List and images in html
List and images in htmlList and images in html
List and images in htmlprithvisawla
 
Images and Lists in HTML
Images and Lists in HTMLImages and Lists in HTML
Images and Lists in HTMLMarlon Jamera
 

Destaque (13)

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
 
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
 

Semelhante a Html hyperlinks

Unit 2 (html)
Unit 2  (html)Unit 2  (html)
Unit 2 (html)manochitra10
 
html
htmlhtml
htmltumetr1
 
Basic HTML Tutorial For Beginners
Basic HTML Tutorial For BeginnersBasic HTML Tutorial For Beginners
Basic HTML Tutorial For BeginnersDHTMLExtreme
 
Intro to html revised2
Intro to html revised2Intro to html revised2
Intro to html revised2mmvidanes29
 
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.pdfAshleyJovelClavecill
 
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 IIUnaib Aslam
 
Html1
Html1Html1
Html1learnt
 
1-22-24 INFO 2106.pptx
1-22-24 INFO 2106.pptx1-22-24 INFO 2106.pptx
1-22-24 INFO 2106.pptxMattMarino13
 
Khoa dang (kay)
Khoa dang (kay)Khoa dang (kay)
Khoa dang (kay)halfofdemon
 
Html project report12
Html project report12Html project report12
Html project report12varunmaini123
 
BITM3730Week1.pptx
BITM3730Week1.pptxBITM3730Week1.pptx
BITM3730Week1.pptxMattMarino13
 
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.pptxvvvvvvvvvvvvvvZahouAmel1
 

Semelhante a 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 new
Java script and html newJava script and html new
Java script and html new
 
Java script and html
Java script and htmlJava script and html
Java script and html
 
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
 
Html1
Html1Html1
Html1
 
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
 

Mais de nobel mujuji

Table structure introduction
Table structure introductionTable structure introduction
Table structure introductionnobel mujuji
 
Positioning text
Positioning textPositioning text
Positioning textnobel mujuji
 
Inserting imagesin html
Inserting imagesin htmlInserting imagesin html
Inserting imagesin htmlnobel mujuji
 
Html character entities
Html character entitiesHtml character entities
Html character entitiesnobel mujuji
 
Horizontal lines!
Horizontal lines!Horizontal lines!
Horizontal lines!nobel mujuji
 
Frames tables forms
Frames tables formsFrames tables forms
Frames tables formsnobel mujuji
 
Creating lists
Creating listsCreating lists
Creating listsnobel mujuji
 
Chapter 2 introduction to html5
Chapter 2 introduction to html5Chapter 2 introduction to html5
Chapter 2 introduction to html5nobel mujuji
 
Chapter 1 one html
Chapter 1 one htmlChapter 1 one html
Chapter 1 one htmlnobel mujuji
 
Chapter 1 html
Chapter 1 htmlChapter 1 html
Chapter 1 htmlnobel mujuji
 
Adding text in html
Adding text in htmlAdding text in html
Adding text in htmlnobel mujuji
 
Javascript conditional statements
Javascript conditional statementsJavascript conditional statements
Javascript conditional statementsnobel mujuji
 

Mais de 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
 

Último

Anamika Escorts Service Darbhanga âŁïž 7014168258 âŁïž High Cost Unlimited Hard ...
Anamika Escorts Service Darbhanga âŁïž 7014168258 âŁïž High Cost Unlimited Hard  ...Anamika Escorts Service Darbhanga âŁïž 7014168258 âŁïž High Cost Unlimited Hard  ...
Anamika Escorts Service Darbhanga âŁïž 7014168258 âŁïž High Cost Unlimited Hard ...nirzagarg
 
call girls in Vaishali (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in Vaishali (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïžcall girls in Vaishali (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in Vaishali (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïžDelhi Call girls
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...BarusRa
 
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...Call Girls in Nagpur High Profile
 
call girls in Dakshinpuri (DELHI) 🔝 >àŒ’9953056974 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in Dakshinpuri  (DELHI) 🔝 >àŒ’9953056974 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïžcall girls in Dakshinpuri  (DELHI) 🔝 >àŒ’9953056974 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in Dakshinpuri (DELHI) 🔝 >àŒ’9953056974 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation decktbatkhuu1
 
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verifiedDelhi Call girls
 
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 JustđŸ“Č Call Ruhi Call Girl Agen...
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 JustđŸ“Č Call Ruhi Call Girl Agen...👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 JustđŸ“Č Call Ruhi Call Girl Agen...
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 JustđŸ“Č Call Ruhi Call Girl Agen...karishmasinghjnh
 
Just Call Vip call girls dharamshala Escorts ☎9352988975 Two shot with one g...
Just Call Vip call girls dharamshala Escorts ☎9352988975 Two shot with one g...Just Call Vip call girls dharamshala Escorts ☎9352988975 Two shot with one g...
Just Call Vip call girls dharamshala Escorts ☎9352988975 Two shot with one g...gajnagarg
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...kumaririma588
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...Pooja Nehwal
 
Sweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptxSweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptxbingyichin04
 
call girls in Kaushambi (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service 🔝...call girls in Kaushambi (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service 🔝...Delhi Call girls
 
âž„đŸ” 7737669865 đŸ”â–» dehradun Call-girls in Women Seeking Men 🔝dehradun🔝 Escor...
âž„đŸ” 7737669865 đŸ”â–» dehradun Call-girls in Women Seeking Men  🔝dehradun🔝   Escor...âž„đŸ” 7737669865 đŸ”â–» dehradun Call-girls in Women Seeking Men  🔝dehradun🔝   Escor...
âž„đŸ” 7737669865 đŸ”â–» dehradun Call-girls in Women Seeking Men 🔝dehradun🔝 Escor...amitlee9823
 
đŸ’«âœ…jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
đŸ’«âœ…jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...đŸ’«âœ…jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
đŸ’«âœ…jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...sonalitrivedi431
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
❀Personal Whatsapp Number 8617697112 Samba Call Girls 💩✅.
❀Personal Whatsapp Number 8617697112 Samba Call Girls 💩✅.❀Personal Whatsapp Number 8617697112 Samba Call Girls 💩✅.
❀Personal Whatsapp Number 8617697112 Samba Call Girls 💩✅.Nitya salvi
 
8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available
8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available
8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Availabledollysharma2066
 
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls AgencyHire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls AgencyNitya salvi
 
âž„đŸ” 7737669865 đŸ”â–» jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
âž„đŸ” 7737669865 đŸ”â–» jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...âž„đŸ” 7737669865 đŸ”â–» jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...
âž„đŸ” 7737669865 đŸ”â–» jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...amitlee9823
 

Último (20)

Anamika Escorts Service Darbhanga âŁïž 7014168258 âŁïž High Cost Unlimited Hard ...
Anamika Escorts Service Darbhanga âŁïž 7014168258 âŁïž High Cost Unlimited Hard  ...Anamika Escorts Service Darbhanga âŁïž 7014168258 âŁïž High Cost Unlimited Hard  ...
Anamika Escorts Service Darbhanga âŁïž 7014168258 âŁïž High Cost Unlimited Hard ...
 
call girls in Vaishali (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in Vaishali (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïžcall girls in Vaishali (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in Vaishali (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
 
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...AMBER GRAIN EMBROIDERY | Growing folklore elements |  Root-based materials, w...
AMBER GRAIN EMBROIDERY | Growing folklore elements | Root-based materials, w...
 
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...Booking open Available Pune Call Girls Nanded City  6297143586 Call Hot India...
Booking open Available Pune Call Girls Nanded City 6297143586 Call Hot India...
 
call girls in Dakshinpuri (DELHI) 🔝 >àŒ’9953056974 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in Dakshinpuri  (DELHI) 🔝 >àŒ’9953056974 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïžcall girls in Dakshinpuri  (DELHI) 🔝 >àŒ’9953056974 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
call girls in Dakshinpuri (DELHI) 🔝 >àŒ’9953056974 🔝 genuine Escort Service đŸ”âœ”ïžâœ”ïž
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
 
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 105, Noida Call girls :8448380779 Model Escorts | 100% verified
 
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 JustđŸ“Č Call Ruhi Call Girl Agen...
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 JustđŸ“Č Call Ruhi Call Girl Agen...👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 JustđŸ“Č Call Ruhi Call Girl Agen...
👉 Call Girls Service Amritsar 👉📞 6367187148 👉📞 JustđŸ“Č Call Ruhi Call Girl Agen...
 
Just Call Vip call girls dharamshala Escorts ☎9352988975 Two shot with one g...
Just Call Vip call girls dharamshala Escorts ☎9352988975 Two shot with one g...Just Call Vip call girls dharamshala Escorts ☎9352988975 Two shot with one g...
Just Call Vip call girls dharamshala Escorts ☎9352988975 Two shot with one g...
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Hy...
 
Sweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptxSweety Planet Packaging Design Process Book.pptx
Sweety Planet Packaging Design Process Book.pptx
 
call girls in Kaushambi (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service 🔝...call girls in Kaushambi (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service 🔝...
call girls in Kaushambi (Ghaziabad) 🔝 >àŒ’8448380779 🔝 genuine Escort Service 🔝...
 
âž„đŸ” 7737669865 đŸ”â–» dehradun Call-girls in Women Seeking Men 🔝dehradun🔝 Escor...
âž„đŸ” 7737669865 đŸ”â–» dehradun Call-girls in Women Seeking Men  🔝dehradun🔝   Escor...âž„đŸ” 7737669865 đŸ”â–» dehradun Call-girls in Women Seeking Men  🔝dehradun🔝   Escor...
âž„đŸ” 7737669865 đŸ”â–» dehradun Call-girls in Women Seeking Men 🔝dehradun🔝 Escor...
 
đŸ’«âœ…jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
đŸ’«âœ…jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...đŸ’«âœ…jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
đŸ’«âœ…jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
❀Personal Whatsapp Number 8617697112 Samba Call Girls 💩✅.
❀Personal Whatsapp Number 8617697112 Samba Call Girls 💩✅.❀Personal Whatsapp Number 8617697112 Samba Call Girls 💩✅.
❀Personal Whatsapp Number 8617697112 Samba Call Girls 💩✅.
 
8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available
8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available
8377087607, Door Step Call Girls In Kalkaji (Locanto) 24/7 Available
 
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls AgencyHire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
Hire 💕 8617697112 Meerut Call Girls Service Call Girls Agency
 
âž„đŸ” 7737669865 đŸ”â–» jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
âž„đŸ” 7737669865 đŸ”â–» jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...âž„đŸ” 7737669865 đŸ”â–» jhansi Call-girls in Women Seeking Men  🔝jhansi🔝   Escorts S...
âž„đŸ” 7737669865 đŸ”â–» jhansi Call-girls in Women Seeking Men 🔝jhansi🔝 Escorts S...
 

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.