SlideShare a Scribd company logo
Practical 3
Implementing Images & Hyperlinks In a Web
Page Using HTML
Objective:
 Learn how to embed images and create links in a
webpage.
The <img> Tag (Embedding Images)
 Used to insert an image in an HTML page.
 Basic Syntax:
 <img src='image.jpg' alt='Description of image'>
 <img src="image.jpg" alt="Beautiful Scenery"
width="300" height="200">
 Attributes:
 - src: Specifies the image file path
 - alt: Alternative text if the image doesn't load.
 - width & height: Controls image size
The <a> Tag (Hyperlinks)
 Anchor tag Used to create hyperlinks to other pages
or files.
 Basic Syntax:
 <a href='https://www.example.com'>Visit
Example</a>
 Attributes:
 - href: URL of the page/file- Links to an external
website.
 - target: '_self' (same tab), '_blank' (new tab)
Combining Images & Hyperlinks
 Click on an Image to Open a Link:
 <a href='https://www.nature.com'>
 <img src='nature.jpg' alt='Nature' width='300'>
 </a>
Download Link using <a> Tag
 Create a Downloadable File Link:
 <a href='documents/sample.pdf'
download>Download PDF</a>
 The 'download' attribute forces the file to be
downloaded instead of opened in the browser.
Summary
 ✔ Use the <img> tag to insert images.
 ✔ The <a> tag creates hyperlinks.
 ✔ Attributes like href, src, alt, target, and
download control behavior.
 ✔ Images can also act as clickable links.
Practical Activity
 ✅ Create an HTML page with:
 1. An image of your choice.
 2. A link to another website.
 3. A downloadable file link.

More Related Content

PPTX
S3 HTML Hyperlinks and Images
PPTX
PPTX
Presentation
PPTX
Web htmlt2
PDF
Maryam Ahmed 10x10
PPTX
HTML Attributes.pptx
PDF
What is HTML Hyperlinks and HTML Images?
PPT
Web forms and html (lect 2)
S3 HTML Hyperlinks and Images
Presentation
Web htmlt2
Maryam Ahmed 10x10
HTML Attributes.pptx
What is HTML Hyperlinks and HTML Images?
Web forms and html (lect 2)

Similar to HTML Images & Hyperlinks Presentation .. (20)

PPTX
Html images and html backgrounds
PDF
Understanding HTML: Creating Text Links for Navigation and Image Links for In...
PPT
Html 5 and CSS - Image Element
PPT
Linking
PPTX
Html images syntax
PDF
ACTC 2013 Website Building Notes
PPTX
Html images
PPT
HTML_Images.ppt
PPTX
PPTX
More on HTML Communication Skills BASICS
PPT
2.1 adding images
PPT
lecture4.ppt
PPTX
Std 10 Computer Chapter 3 Handling Images in HTML (Part 1)
PDF
What does the browser pre-loader do?
PPTX
HTML Images
PDF
Unit 2.7 Images
PPTX
HTML (part ii).pptx
TXT
Seo hints
PPTX
HTML5 - Insert images and Apply page backgrounds
DOCX
Importance Facebook OG Meta Tags and Twitter OG Meta Tags
Html images and html backgrounds
Understanding HTML: Creating Text Links for Navigation and Image Links for In...
Html 5 and CSS - Image Element
Linking
Html images syntax
ACTC 2013 Website Building Notes
Html images
HTML_Images.ppt
More on HTML Communication Skills BASICS
2.1 adding images
lecture4.ppt
Std 10 Computer Chapter 3 Handling Images in HTML (Part 1)
What does the browser pre-loader do?
HTML Images
Unit 2.7 Images
HTML (part ii).pptx
Seo hints
HTML5 - Insert images and Apply page backgrounds
Importance Facebook OG Meta Tags and Twitter OG Meta Tags
Ad

Recently uploaded (20)

PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PPTX
Cell Structure & Organelles in detailed.
PPTX
master seminar digital applications in india
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PPTX
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PDF
01-Introduction-to-Information-Management.pdf
PPTX
Cell Types and Its function , kingdom of life
PDF
2.FourierTransform-ShortQuestionswithAnswers.pdf
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PDF
Computing-Curriculum for Schools in Ghana
PDF
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PPTX
Institutional Correction lecture only . . .
PDF
A systematic review of self-coping strategies used by university students to ...
PPTX
Presentation on HIE in infants and its manifestations
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
Cell Structure & Organelles in detailed.
master seminar digital applications in india
Final Presentation General Medicine 03-08-2024.pptx
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
Tissue processing ( HISTOPATHOLOGICAL TECHNIQUE
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
01-Introduction-to-Information-Management.pdf
Cell Types and Its function , kingdom of life
2.FourierTransform-ShortQuestionswithAnswers.pdf
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Chapter 2 Heredity, Prenatal Development, and Birth.pdf
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Computing-Curriculum for Schools in Ghana
A GUIDE TO GENETICS FOR UNDERGRADUATE MEDICAL STUDENTS
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Institutional Correction lecture only . . .
A systematic review of self-coping strategies used by university students to ...
Presentation on HIE in infants and its manifestations
human mycosis Human fungal infections are called human mycosis..pptx
Ad

HTML Images & Hyperlinks Presentation ..

  • 1. Practical 3 Implementing Images & Hyperlinks In a Web Page Using HTML
  • 2. Objective:  Learn how to embed images and create links in a webpage.
  • 3. The <img> Tag (Embedding Images)  Used to insert an image in an HTML page.  Basic Syntax:  <img src='image.jpg' alt='Description of image'>  <img src="image.jpg" alt="Beautiful Scenery" width="300" height="200">  Attributes:  - src: Specifies the image file path  - alt: Alternative text if the image doesn't load.  - width & height: Controls image size
  • 4. The <a> Tag (Hyperlinks)  Anchor tag Used to create hyperlinks to other pages or files.  Basic Syntax:  <a href='https://www.example.com'>Visit Example</a>  Attributes:  - href: URL of the page/file- Links to an external website.  - target: '_self' (same tab), '_blank' (new tab)
  • 5. Combining Images & Hyperlinks  Click on an Image to Open a Link:  <a href='https://www.nature.com'>  <img src='nature.jpg' alt='Nature' width='300'>  </a>
  • 6. Download Link using <a> Tag  Create a Downloadable File Link:  <a href='documents/sample.pdf' download>Download PDF</a>  The 'download' attribute forces the file to be downloaded instead of opened in the browser.
  • 7. Summary  ✔ Use the <img> tag to insert images.  ✔ The <a> tag creates hyperlinks.  ✔ Attributes like href, src, alt, target, and download control behavior.  ✔ Images can also act as clickable links.
  • 8. Practical Activity  ✅ Create an HTML page with:  1. An image of your choice.  2. A link to another website.  3. A downloadable file link.