SlideShare una empresa de Scribd logo
1 de 13
HTML 
HAMEDA HURMAT
HTML Short Quotations 
The HTML <q> element defines a short quotation. 
Browsers usually insert quotation marks around the <q> element. 
<p>goal is to: <q>Build a future where people live in harmony with nature.</q></p> 
Bdo 
The bdo element is used to “override the Unicode bidirectional algorithm”, which in layman’s terms means 
reversing the direction of text enclosed between the opening <bdo> and closing </bdo> tags. 
<bdo dir=" { ltr | rtl } "> Correct one</bdo> 
Dfn 
The dfn element is used to identify the defining instance of a term 
<p>The concept of <dfn>progressive enhancement</dfn> has been about for a few years. </p>
HTML <abbr> Tag 
The <abbr title="World Health Organization">WHO</abbr> was founded in 1948. 
Tag Description 
<abbr> Defines an abbreviation or acronym 
<address> Defines contact information for the author/owner of a document 
<bdo> Defines the text direction 
<blockquote> Defines a section that is quoted from another source 
<q> Defines an inline (short) quotation 
<cite> 
Defines the title of a work, to identify the contained text as a reference to 
another source 
<dfn> Defines a definition termd
HTML Long Quotations 
The HTML <blockquote> element defines a quoted section. 
Browsers usually indent <blockquote> elements. 
<blockquote> 
For 50 years, WWF has been protecting the future of nature. 
The world's leading conservation organization, 
</blockquote>
HTML Comments 
Comments are not displayed by the browser, but they can help document your HTML. 
With comments you can place notifications and reminders in your HTML. 
<!-- Write your comments here -->
HTML Links 
Links are found in nearly all web pages. Links allow users to click their way from page to page. 
HTML Links - Syntax 
In HTML, links are defined with the <a> tag: 
<a href="url">link text</a> 
Local Links 
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 - The target Attribute 
The target attribute specifies where to open the linked document. 
This example will open the linked document in a new browser window or in a new tab: 
<a href="http://www.google.com/” target="_blank">google!</a>
Target Value Description 
_blank Opens the linked document in a new window or tab 
_self 
Opens the linked document in the same frame as it was 
clicked (this is default) 
_parent Opens the linked document in the parent frame 
_top 
Opens the linked document in the full body of the 
window 
framename Opens the linked document in a named frame
HTML Images 
HTML Images Syntax 
In HTML, images are defined with the <img> tag. 
The <img> tag is empty, it contains attributes only, and does not have a closing tag. 
The src attribute defines the url (web address) of the image: 
<img src="url" alt="some_text">
The alt Attribute 
The alt attribute specifies an alternate text for the image, if it cannot be displayed. 
The value of the alt attribute should describe the image in words: 
Example 
<img src="html5.gif" alt="The official HTML5 Icon">
Image Size - Width and Height 
You can use the style attribute to specify the width and height of an image. 
The values are specified in pixels (use px after the value): 
<img src="html5.gif" alt="HTML5 Icon" style="width:128px;height:128px"> 
Alternatively, you can use width and height attributes. 
The values are specified in pixels (without px after the value): 
<img src="html5.gif" alt="HTML5 Icon" width="128" height="128">
HTML Links - Image as Link 
It is common to use images as links: 
<a href="default.asp"> 
<img src="smiley.gif" alt="HTML tutorial" 
style="width:42px;height:42px;border:0"> 
</a>
Thank You

Más contenido relacionado

La actualidad más candente

La actualidad más candente (20)

HTML5 audio & video
HTML5 audio & videoHTML5 audio & video
HTML5 audio & video
 
Html5 semantics
Html5 semanticsHtml5 semantics
Html5 semantics
 
CSS for Beginners
CSS for BeginnersCSS for Beginners
CSS for Beginners
 
Introduction of Html/css/js
Introduction of Html/css/jsIntroduction of Html/css/js
Introduction of Html/css/js
 
HTML CSS JS in Nut shell
HTML  CSS JS in Nut shellHTML  CSS JS in Nut shell
HTML CSS JS in Nut shell
 
HTML CSS Basics
HTML CSS BasicsHTML CSS Basics
HTML CSS Basics
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
HTML
HTMLHTML
HTML
 
Basic Html Notes
Basic Html NotesBasic Html Notes
Basic Html Notes
 
Presentation on HTML
Presentation on HTMLPresentation on HTML
Presentation on HTML
 
Html ppt
Html pptHtml ppt
Html ppt
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
 
CSS Selectors
CSS SelectorsCSS Selectors
CSS Selectors
 
Cascading Style Sheet
Cascading Style SheetCascading Style Sheet
Cascading Style Sheet
 
html tags
html tagshtml tags
html tags
 
Html example
Html exampleHtml example
Html example
 
Cascading style sheets (CSS)
Cascading style sheets (CSS)Cascading style sheets (CSS)
Cascading style sheets (CSS)
 
Html links
Html linksHtml links
Html links
 
Html frames
Html framesHtml frames
Html frames
 
CSS
CSSCSS
CSS
 

Destacado

Hyperlinks in HTML
Hyperlinks in HTMLHyperlinks in HTML
Hyperlinks in HTML
Aarti P
 
Document type definition
Document type definitionDocument type definition
Document type definition
Raghu nath
 
CSS-Cascading Style Sheets - Introduction
CSS-Cascading Style Sheets - IntroductionCSS-Cascading Style Sheets - Introduction
CSS-Cascading Style Sheets - Introduction
Mukesh Tekwani
 

Destacado (20)

Hyperlinks in HTML
Hyperlinks in HTMLHyperlinks in HTML
Hyperlinks in HTML
 
Images and Lists in HTML
Images and Lists in HTMLImages and Lists in HTML
Images and Lists in HTML
 
Html Ppt
Html PptHtml Ppt
Html Ppt
 
HTML
HTMLHTML
HTML
 
Html hyperlinks
Html hyperlinksHtml hyperlinks
Html hyperlinks
 
Links - IntraPage
Links - IntraPageLinks - IntraPage
Links - IntraPage
 
Tablas html
Tablas htmlTablas html
Tablas html
 
Html links
Html linksHtml links
Html links
 
Document type definition
Document type definitionDocument type definition
Document type definition
 
Working with HTML Lists
Working with HTML ListsWorking with HTML Lists
Working with HTML Lists
 
Formatting Text
Formatting TextFormatting Text
Formatting Text
 
Links in Html
Links in HtmlLinks in Html
Links in Html
 
XML Schema
XML SchemaXML Schema
XML Schema
 
XML Document Object Model (DOM)
XML Document Object Model (DOM)XML Document Object Model (DOM)
XML Document Object Model (DOM)
 
LINKING IN HTML
LINKING IN HTMLLINKING IN HTML
LINKING IN HTML
 
CSS-Cascading Style Sheets - Introduction
CSS-Cascading Style Sheets - IntroductionCSS-Cascading Style Sheets - Introduction
CSS-Cascading Style Sheets - Introduction
 
Html table tags
Html table tagsHtml table tags
Html table tags
 
XML and DTD
XML and DTDXML and DTD
XML and DTD
 
Anchor tag HTML Presentation
Anchor tag HTML PresentationAnchor tag HTML Presentation
Anchor tag HTML Presentation
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 

Similar a HTML Link - Image - Comments

Web_Devp_HTML_CSS00jfhfghhdf0000000.pptx
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptxWeb_Devp_HTML_CSS00jfhfghhdf0000000.pptx
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptx
gauravpurola
 
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
 
Class Intro / HTML Basics
Class Intro / HTML BasicsClass Intro / HTML Basics
Class Intro / HTML Basics
Shawn Calvert
 

Similar a HTML Link - Image - Comments (20)

BVK_PTT_HTML-Unit - III (1).pptx
BVK_PTT_HTML-Unit - III (1).pptxBVK_PTT_HTML-Unit - III (1).pptx
BVK_PTT_HTML-Unit - III (1).pptx
 
Html Workshop
Html WorkshopHtml Workshop
Html Workshop
 
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptx
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptxWeb_Devp_HTML_CSS00jfhfghhdf0000000.pptx
Web_Devp_HTML_CSS00jfhfghhdf0000000.pptx
 
Learn html elements and structure cheatsheet codecademy
Learn html  elements and structure cheatsheet   codecademyLearn html  elements and structure cheatsheet   codecademy
Learn html elements and structure cheatsheet codecademy
 
Html
HtmlHtml
Html
 
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
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
 
Html
HtmlHtml
Html
 
Web development Training in Ambala ! Batra Computer Centre
Web development Training in Ambala ! Batra Computer CentreWeb development Training in Ambala ! Batra Computer Centre
Web development Training in Ambala ! Batra Computer Centre
 
HTML.pptx
HTML.pptxHTML.pptx
HTML.pptx
 
Html basic
Html basicHtml basic
Html basic
 
CAP 756 UNIT 1.pptx
CAP 756 UNIT 1.pptxCAP 756 UNIT 1.pptx
CAP 756 UNIT 1.pptx
 
Class Intro / HTML Basics
Class Intro / HTML BasicsClass Intro / HTML Basics
Class Intro / HTML Basics
 
HTML Fundamentals
HTML FundamentalsHTML Fundamentals
HTML Fundamentals
 
3 1-html-fundamentals-110302100520-phpapp02
3 1-html-fundamentals-110302100520-phpapp023 1-html-fundamentals-110302100520-phpapp02
3 1-html-fundamentals-110302100520-phpapp02
 
AttributesL3.pptx
AttributesL3.pptxAttributesL3.pptx
AttributesL3.pptx
 
Eye catching HTML BASICS tips: Learn easily
Eye catching HTML BASICS tips: Learn easilyEye catching HTML BASICS tips: Learn easily
Eye catching HTML BASICS tips: Learn easily
 
HTML and DHTML
HTML and DHTMLHTML and DHTML
HTML and DHTML
 
Html
HtmlHtml
Html
 
Hypertext_markup_language
Hypertext_markup_languageHypertext_markup_language
Hypertext_markup_language
 

Más de Hameda Hurmat (20)

15 Setup BIND 9
15 Setup BIND 915 Setup BIND 9
15 Setup BIND 9
 
14 FILE Server
14 FILE Server14 FILE Server
14 FILE Server
 
13 DHCP Configuration in Linux
13 DHCP Configuration in Linux13 DHCP Configuration in Linux
13 DHCP Configuration in Linux
 
11-IIS server 2016
11-IIS server 201611-IIS server 2016
11-IIS server 2016
 
10 implementing GPOs
10 implementing GPOs10 implementing GPOs
10 implementing GPOs
 
Administer Active Directory
Administer Active DirectoryAdminister Active Directory
Administer Active Directory
 
Active Directory
Active DirectoryActive Directory
Active Directory
 
7 understanding DNS
7 understanding DNS7 understanding DNS
7 understanding DNS
 
6 understanding DHCP
6 understanding DHCP6 understanding DHCP
6 understanding DHCP
 
5 configuring TCP/IP
5 configuring TCP/IP5 configuring TCP/IP
5 configuring TCP/IP
 
4. install and configure hyper v
4. install and configure hyper v4. install and configure hyper v
4. install and configure hyper v
 
3 configuring basic and dynamic disks
3 configuring basic and dynamic disks3 configuring basic and dynamic disks
3 configuring basic and dynamic disks
 
2 introduction of storage
2 introduction of storage2 introduction of storage
2 introduction of storage
 
1 introduction to windows server 2016
1  introduction to windows server 20161  introduction to windows server 2016
1 introduction to windows server 2016
 
12 introduction to Linux OS
12 introduction to Linux OS12 introduction to Linux OS
12 introduction to Linux OS
 
Flowers Album
Flowers AlbumFlowers Album
Flowers Album
 
Change management
Change managementChange management
Change management
 
ویندو7
ویندو7ویندو7
ویندو7
 
Interview skill
Interview skillInterview skill
Interview skill
 
Waste management
Waste managementWaste management
Waste management
 

Último

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
giselly40
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
Earley Information Science
 

Último (20)

GenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdfGenAI Risks & Security Meetup 01052024.pdf
GenAI Risks & Security Meetup 01052024.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Evaluating the top large language models.pdf
Evaluating the top large language models.pdfEvaluating the top large language models.pdf
Evaluating the top large language models.pdf
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024Partners Life - Insurer Innovation Award 2024
Partners Life - Insurer Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 

HTML Link - Image - Comments

  • 2. HTML Short Quotations The HTML <q> element defines a short quotation. Browsers usually insert quotation marks around the <q> element. <p>goal is to: <q>Build a future where people live in harmony with nature.</q></p> Bdo The bdo element is used to “override the Unicode bidirectional algorithm”, which in layman’s terms means reversing the direction of text enclosed between the opening <bdo> and closing </bdo> tags. <bdo dir=" { ltr | rtl } "> Correct one</bdo> Dfn The dfn element is used to identify the defining instance of a term <p>The concept of <dfn>progressive enhancement</dfn> has been about for a few years. </p>
  • 3. HTML <abbr> Tag The <abbr title="World Health Organization">WHO</abbr> was founded in 1948. Tag Description <abbr> Defines an abbreviation or acronym <address> Defines contact information for the author/owner of a document <bdo> Defines the text direction <blockquote> Defines a section that is quoted from another source <q> Defines an inline (short) quotation <cite> Defines the title of a work, to identify the contained text as a reference to another source <dfn> Defines a definition termd
  • 4. HTML Long Quotations The HTML <blockquote> element defines a quoted section. Browsers usually indent <blockquote> elements. <blockquote> For 50 years, WWF has been protecting the future of nature. The world's leading conservation organization, </blockquote>
  • 5. HTML Comments Comments are not displayed by the browser, but they can help document your HTML. With comments you can place notifications and reminders in your HTML. <!-- Write your comments here -->
  • 6. HTML Links Links are found in nearly all web pages. Links allow users to click their way from page to page. HTML Links - Syntax In HTML, links are defined with the <a> tag: <a href="url">link text</a> Local Links 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>
  • 7. HTML Links - The target Attribute The target attribute specifies where to open the linked document. This example will open the linked document in a new browser window or in a new tab: <a href="http://www.google.com/” target="_blank">google!</a>
  • 8. Target Value Description _blank Opens the linked document in a new window or tab _self Opens the linked document in the same frame as it was clicked (this is default) _parent Opens the linked document in the parent frame _top Opens the linked document in the full body of the window framename Opens the linked document in a named frame
  • 9. HTML Images HTML Images Syntax In HTML, images are defined with the <img> tag. The <img> tag is empty, it contains attributes only, and does not have a closing tag. The src attribute defines the url (web address) of the image: <img src="url" alt="some_text">
  • 10. The alt Attribute The alt attribute specifies an alternate text for the image, if it cannot be displayed. The value of the alt attribute should describe the image in words: Example <img src="html5.gif" alt="The official HTML5 Icon">
  • 11. Image Size - Width and Height You can use the style attribute to specify the width and height of an image. The values are specified in pixels (use px after the value): <img src="html5.gif" alt="HTML5 Icon" style="width:128px;height:128px"> Alternatively, you can use width and height attributes. The values are specified in pixels (without px after the value): <img src="html5.gif" alt="HTML5 Icon" width="128" height="128">
  • 12. HTML Links - Image as Link It is common to use images as links: <a href="default.asp"> <img src="smiley.gif" alt="HTML tutorial" style="width:42px;height:42px;border:0"> </a>