SlideShare a Scribd company logo
HYPER LINK
Generate Links
 HTML LINKS – HYPERLINKS
 Html links are hyperlinks.
You can click on a link and jump to another document.
When you move the mouse over a link, the mouse arrow will
turn into a little hand.
 HTML LINKS - SYNTAX
• The HTML <a> tag defines a hyperlink. It has the following
syntax:
<a href=“url”>link text</a>
 The link text is the part that will be visible to the reader.
 Clicking on the link text, will send the reader to the specified
URL address.
IMAGE TAG
 HTML IMAGES SYNTAX
 The HTML <img> tag is used to embed an image in a web page.
 Images are not technically inserted into a web page; images are linked to web pages.
The <img> tag creates a holding space for the referenced image.
 The <img> tag is empty, it contains attributes only, and does not have a closing tag.
 The <img> tag has two required attributes:
 src - Specifies the path to the image.
 alt – Specifies an alternate text for the image.
 SYNTAX
<img src=“url” alt=“alternatetext”>
•The required src attribute specifies the path (URL)
to the image.
 IMAGES AS A LINK
 To use an image as a link, put the <img> tag inside the <a> tag;

More Related Content

PDF
What is HTML Hyperlinks and HTML Images?
PPTX
HTML_Day_Two(W3Schools)
PPTX
More on HTML Communication Skills BASICS
PPTX
BVK_PTT_HTML-Unit - III (1).pptx
PPTX
HTML : INTRODUCTION TO WEB DESIGN Presentation
PPTX
htmllinks-191023021435.pptxaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
PPTX
Html links
PDF
Web Development 3 (HTML & CSS)
What is HTML Hyperlinks and HTML Images?
HTML_Day_Two(W3Schools)
More on HTML Communication Skills BASICS
BVK_PTT_HTML-Unit - III (1).pptx
HTML : INTRODUCTION TO WEB DESIGN Presentation
htmllinks-191023021435.pptxaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
Html links
Web Development 3 (HTML & CSS)

Similar to Talk about link tag and image tag ppt.pdf (20)

PPTX
02. MANIPULATE.pptx
PPTX
HTML-(workshop)7557.pptx
PPT
N5 Computing Science HTML
PPTX
Introduction to HTML: The Building Block of the Web by Infinite Web Solutions...
PPTX
Best Option to learn start here HTML.pptx
PPTX
HTML Images & Hyperlinks Presentation ..
PPTX
HTML Lesson 3
PPTX
HTML Attributes.pptx
PPTX
Simple Presentation in Pink Lilac Pastel Blobs Basic Style.pptx.pptx
PDF
Chapter 2 Notes, MCQs, and QA (HTML and CSS).pdf
PPTX
HTML Presentation
PPTX
AttributesL3.pptx
PPTX
Html images syntax
PPT
Linking
PPTX
Introduction to html fundamental concepts
PPTX
HTML introduction for beginners Slides .pptx
PPTX
Lesson 4 HTML-Tags-A-Foundation-for-Web-Development.pptx
PPTX
S3 HTML Hyperlinks and Images
PPTX
HTML Basic Training for beginners - Learn HTML coding
02. MANIPULATE.pptx
HTML-(workshop)7557.pptx
N5 Computing Science HTML
Introduction to HTML: The Building Block of the Web by Infinite Web Solutions...
Best Option to learn start here HTML.pptx
HTML Images & Hyperlinks Presentation ..
HTML Lesson 3
HTML Attributes.pptx
Simple Presentation in Pink Lilac Pastel Blobs Basic Style.pptx.pptx
Chapter 2 Notes, MCQs, and QA (HTML and CSS).pdf
HTML Presentation
AttributesL3.pptx
Html images syntax
Linking
Introduction to html fundamental concepts
HTML introduction for beginners Slides .pptx
Lesson 4 HTML-Tags-A-Foundation-for-Web-Development.pptx
S3 HTML Hyperlinks and Images
HTML Basic Training for beginners - Learn HTML coding
Ad

Recently uploaded (20)

PDF
01-Introduction-to-Information-Management.pdf
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
Complications of Minimal Access Surgery at WLH
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPTX
Institutional Correction lecture only . . .
PDF
Microbial disease of the cardiovascular and lymphatic systems
PPTX
Pharma ospi slides which help in ospi learning
PPTX
Cell Types and Its function , kingdom of life
PPTX
master seminar digital applications in india
PDF
RMMM.pdf make it easy to upload and study
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
102 student loan defaulters named and shamed – Is someone you know on the list?
PPTX
Presentation on HIE in infants and its manifestations
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
A systematic review of self-coping strategies used by university students to ...
PDF
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
01-Introduction-to-Information-Management.pdf
Supply Chain Operations Speaking Notes -ICLT Program
Complications of Minimal Access Surgery at WLH
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Institutional Correction lecture only . . .
Microbial disease of the cardiovascular and lymphatic systems
Pharma ospi slides which help in ospi learning
Cell Types and Its function , kingdom of life
master seminar digital applications in india
RMMM.pdf make it easy to upload and study
Pharmacology of Heart Failure /Pharmacotherapy of CHF
Module 4: Burden of Disease Tutorial Slides S2 2025
Abdominal Access Techniques with Prof. Dr. R K Mishra
human mycosis Human fungal infections are called human mycosis..pptx
102 student loan defaulters named and shamed – Is someone you know on the list?
Presentation on HIE in infants and its manifestations
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Final Presentation General Medicine 03-08-2024.pptx
A systematic review of self-coping strategies used by university students to ...
OBE - B.A.(HON'S) IN INTERIOR ARCHITECTURE -Ar.MOHIUDDIN.pdf
Ad

Talk about link tag and image tag ppt.pdf

  • 2.  HTML LINKS – HYPERLINKS  Html links are hyperlinks. You can click on a link and jump to another document. When you move the mouse over a link, the mouse arrow will turn into a little hand.
  • 3.  HTML LINKS - SYNTAX • The HTML <a> tag defines a hyperlink. It has the following syntax: <a href=“url”>link text</a>  The link text is the part that will be visible to the reader.  Clicking on the link text, will send the reader to the specified URL address.
  • 5.  HTML IMAGES SYNTAX  The HTML <img> tag is used to embed an image in a web page.  Images are not technically inserted into a web page; images are linked to web pages. The <img> tag creates a holding space for the referenced image.  The <img> tag is empty, it contains attributes only, and does not have a closing tag.  The <img> tag has two required attributes:  src - Specifies the path to the image.  alt – Specifies an alternate text for the image.
  • 6.  SYNTAX <img src=“url” alt=“alternatetext”> •The required src attribute specifies the path (URL) to the image.
  • 7.  IMAGES AS A LINK  To use an image as a link, put the <img> tag inside the <a> tag;