SlideShare a Scribd company logo
Working with HTML Elements Session 2
Contents Explain the basic formatting elements. Explain the color properties. Explain the phrase elements. Explain the image element. Explain hyperlinks. Building Dynamic Websites/Session 2/   of 28
Basic text elements Providing a flow to the contents. Making the web page comprehensible. P BR HR H1 – H6 PRE  Building Dynamic Websites/Session 2/   of 28
Heading levels <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;> <HTML><HEAD> <TITLE>Search engines</TITLE> <BODY> <H1>H1 Heading</H1> <H2>H2 Heading</H2> <H3>H3 Heading</H3> <H4>H4 Heading</H4> <H5>H5 Heading</H5> <H6>H6 Heading</H6> </BODY> </HTML> Building Dynamic Websites/Session 2/   of 28
Heading level Building Dynamic Websites/Session 2/   of 28
Address element To be a container element. Enclosed: The address Contact information. A link to the home page. A search string feature. Copyright information. Building Dynamic Websites/Session 2/   of 28
Address element <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;> <HTML><HEAD> <TITLE>Address element</TITLE> <BODY> This is an example of ADDRESS element. <HR/> <ADDRESS> VEST Technologies<BR/> Building 009, West Road<BR/> Canberra<BR/> USA </ADDRESS> </BODY> </HTML> Building Dynamic Websites/Session 2/   of 28
Address element Building Dynamic Websites/Session 2/   of 28
TT element Displaying text such as telewriter type. <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;> <HTML><HEAD> <TITLE>TT element</TITLE> <BODY> TT element renders <TT>teletype</TT> or <TT>monospaced</TT> text. </BODY> </HTML> Building Dynamic Websites/Session 2/   of 28
TT element Building Dynamic Websites/Session 2/   of 28
Character entity Building Dynamic Websites/Session 2/   of 28 Symbol name Entity name Entity number Ampersand (&) &amp;  &#38; Greater than (>) &gt;  &#62 Less than (<) &lt;  &#60 non-breaking space &nbsp; &#160 Quotation mark (“ “) &quot;  &#34
Basic formatting B BIG I SMALL U Building Dynamic Websites/Session 2/   of 28
Update and Shiting text DEL INS STRONG SUB SUP Building Dynamic Websites/Session 2/   of 28
Color property The color name is listed to validate and process with HTML page. The color property specifies one of these colors to be applied to the textual content. Building Dynamic Websites/Session 2/   of 28
Color property Building Dynamic Websites/Session 2/   of 28 Color Hexadecimal Value Aqua #00FFFF Fuchsia #FF00FF Gray #808080 Maroon #800000 Navy #000080 Olive #808000 Purple #800080 Silver #C0C0C0 Teal #008080
Phrase elements There are certain phrase elements. Displaying a program code in different font emphasizing with a different look. Building Dynamic Websites/Session 2/   of 28
Phrase elements Building Dynamic Websites/Session 2/   of 28 Element Description CODE Displaying the computer program. DFN Displaying the defination of a term. EM Emphasizing the enclosed text SAMP Displaying a sample output of computer programs. VAR Displaying a variable name that refers to a block of memory and holds a value which is referred by the variable name.
Building Dynamic Websites/Session 2/   of 16
Phrase elements <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;> <HTML><HEAD> <TITLE>Phrase Elements</TITLE> <BODY> <H3>Microsoft Excel</H3><HR/> Microsoft Excel: <DFN>is the spreadsheet program.</DFN> <P><CODE>=SUM(first cell address:last cell address)</CODE> is the function that add values appearing in the given cell range.<BR/> Building Dynamic Websites/Session 2/   of 28
Phrase elements The <EM>first cell address</EM> is the address of the starting the cell from where you want to start the addition operation. The <EM>last cell address</EM> is the address of the last the cell till where you want to add the values.<BR/> The <CODE>SUM</CODE> function adds all numeric values existing in the cells between the first cell and the last cell.</P> An example of <CODE>SUM</CODE> function: <SAMP>=SUM(A1:A3)</SAMP> </BODY> </HTML> Building Dynamic Websites/Session 2/   of 28
Phrase elements Building Dynamic Websites/Session 2/   of 28
SPAN and DIV element These element defines a section in a web page. DIV is a block level element. SPAN is an in-line level element. Building Dynamic Websites/Session 2/   of 28
IMG element SRC WIDTH HEIGHT ALT LONGDESC ALIGN USEMAP Building Dynamic Websites/Session 2/   of 28
Image maps There are diferrent areas that act as links in an image. Map element AREA element Building Dynamic Websites/Session 2/   of 28
Image maps <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;> <HTML><HEAD> <TITLE>Search engines</TITLE> <BODY> <H2>Search engines</H2> <MAP name=&quot;searchmap&quot;> <AREA href=&quot;http://www.google.com&quot; alt=&quot;Google&quot; shape=&quot;rect&quot; coords=&quot;0,0,170,35&quot;/> <AREA href=&quot;http://www.ask.com&quot; alt=&quot;Ask&quot; shape=&quot;rect&quot; coords=&quot;0,28,170,70&quot;/> </MAP> <img src=&quot;SearchEngines.JPG&quot; alt=&quot;Search Engines&quot; width=&quot;286&quot; height=&quot;99&quot; usemap=&quot;#searchmap&quot;/> </BODY> </HTML> Building Dynamic Websites/Session 2/   of 28
Image maps Building Dynamic Websites/Session 2/   of 28
Hyperlinks HREF HREFLANG NAME TARGET TITLE Building Dynamic Websites/Session 2/   of 28
Summary Basic text elements providing a flow to the contents. Address element enclosed the contact information. W3C defined 16 color name for HTML. Phrase elements display code in different font emphasizing with a different look. There are diferrent areas that act as links in an image. Mailto link allows sending emails Building Dynamic Websites/Session 2/   of 28

More Related Content

What's hot (19)

Html ppt
Html pptHtml ppt
Html ppt
Sanmuga Nathan
 
Intro Html
Intro HtmlIntro Html
Intro Html
Chidanand Byahatti
 
Html Ppt
Html PptHtml Ppt
Html Ppt
vijayanit
 
Html For Beginners 2
Html For Beginners 2Html For Beginners 2
Html For Beginners 2
Sriram Raj
 
Html Intro2
Html Intro2Html Intro2
Html Intro2
mlackner
 
Html for Beginners
Html for BeginnersHtml for Beginners
Html for Beginners
Sriram Raj
 
Html
HtmlHtml
Html
Vahideh Zarea Gavgani
 
Intr To Html & Xhtml
Intr To Html & XhtmlIntr To Html & Xhtml
Intr To Html & Xhtml
Digital Insights - Digital Marketing Agency
 
Lecture1
Lecture1Lecture1
Lecture1
Ahmed Abozeed
 
Module 2
Module 2Module 2
Module 2
Xiyue Yang
 
Web publishing and XHTML
Web publishing and XHTMLWeb publishing and XHTML
Web publishing and XHTML
bjornh
 
KMUTNB - Internet Programming 3/7
KMUTNB - Internet Programming 3/7KMUTNB - Internet Programming 3/7
KMUTNB - Internet Programming 3/7
phuphax
 
Understanding html
Understanding htmlUnderstanding html
Understanding html
Ray Villalobos
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
vikasgaur31
 
CSS
CSSCSS
CSS
bjornh
 
Prabu html
Prabu htmlPrabu html
Prabu html
Prabu Cse
 
Block2 Session2 Presentation
Block2 Session2 PresentationBlock2 Session2 Presentation
Block2 Session2 Presentation
Michael Gwyther
 
Embedded Metadata working group
Embedded Metadata working groupEmbedded Metadata working group
Embedded Metadata working group
Visual Resources Association
 
What is xml
What is xmlWhat is xml
What is xml
Sachit Singh
 

Viewers also liked (12)

Week 5 Lecture
Week 5 LectureWeek 5 Lecture
Week 5 Lecture
Katherine McCurdy-Lapierre, R.G.D.
 
belajar HTML
belajar HTML belajar HTML
belajar HTML
Universitas Pendidikan Indonesia
 
Week 6 Lecture
Week 6 LectureWeek 6 Lecture
Week 6 Lecture
Katherine McCurdy-Lapierre, R.G.D.
 
Week 4 Lecture Part 1
Week 4 Lecture Part 1Week 4 Lecture Part 1
Week 4 Lecture Part 1
Katherine McCurdy-Lapierre, R.G.D.
 
Week 4 Lecture Part 2
Week 4 Lecture Part 2Week 4 Lecture Part 2
Week 4 Lecture Part 2
Katherine McCurdy-Lapierre, R.G.D.
 
Html text and formatting
Html text and formattingHtml text and formatting
Html text and formatting
eShikshak
 
HTML STYLES
HTML STYLESHTML STYLES
HTML STYLES
Micah Fuentes
 
HTML Basic
HTML BasicHTML Basic
HTML Basic
Ryan Chung
 
Basic html
Basic htmlBasic html
Basic html
Nicha Jutasirivongse
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
vikasgaur31
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
MayaLisa
 
Introduction to Slide Design: 7 Rules for Creating Effective Slides
Introduction to Slide Design: 7 Rules for Creating Effective SlidesIntroduction to Slide Design: 7 Rules for Creating Effective Slides
Introduction to Slide Design: 7 Rules for Creating Effective Slides
Alex Rister
 

Similar to 02. session 02 working with html elements (20)

Html tags
Html tagsHtml tags
Html tags
Gaurav Jaiswal
 
Html tutorial
Html tutorialHtml tutorial
Html tutorial
mohamed ashraf
 
Html
HtmlHtml
Html
Kavi Bharathi R
 
01. session 01 introduction to html
01. session 01   introduction to html01. session 01   introduction to html
01. session 01 introduction to html
Phúc Đỗ
 
Html Presentation Of Web Page Making
Html Presentation Of Web Page MakingHtml Presentation Of Web Page Making
Html Presentation Of Web Page Making
Sandeep Supal
 
Html
HtmlHtml
Html
Rathan Raj
 
1-04: HTML Elements
1-04: HTML Elements1-04: HTML Elements
1-04: HTML Elements
apnwebdev
 
1 04-html elements
1 04-html elements1 04-html elements
1 04-html elements
apnwebdev
 
HTML
HTMLHTML
HTML
Gouthaman V
 
Lecture 4
Lecture 4Lecture 4
Lecture 4
uccwebcourses
 
Webpages And Dynamic Content
Webpages And Dynamic ContentWebpages And Dynamic Content
Webpages And Dynamic Content
maycourse
 
Introduction to web design
Introduction to web designIntroduction to web design
Introduction to web design
Stephen Pollard
 
Html5 final
Html5 finalHtml5 final
Html5 final
saransh_kataria
 
AK html
AK  htmlAK  html
AK html
gauravashq
 
HTML & CSS
HTML & CSSHTML & CSS
HTML & CSS
jlinabary
 
Intro to html
Intro to htmlIntro to html
Intro to html
anshuman rahi
 
Intro to html
Intro to htmlIntro to html
Intro to html
anshuman rahi
 
web technologiesUnit 1
web technologiesUnit 1web technologiesUnit 1
web technologiesUnit 1
Pathi Radhika
 
Html intro
Html introHtml intro
Html intro
kalaivani.g
 
Html Expression Web
Html Expression WebHtml Expression Web
Html Expression Web
Mark Frydenberg
 

More from Phúc Đỗ (14)

15. session 15 data binding
15. session 15   data binding15. session 15   data binding
15. session 15 data binding
Phúc Đỗ
 
14. session 14 dhtml filter
14. session 14   dhtml filter14. session 14   dhtml filter
14. session 14 dhtml filter
Phúc Đỗ
 
13. session 13 introduction to dhtml
13. session 13   introduction to dhtml13. session 13   introduction to dhtml
13. session 13 introduction to dhtml
Phúc Đỗ
 
12. session 12 java script objects
12. session 12   java script objects12. session 12   java script objects
12. session 12 java script objects
Phúc Đỗ
 
11. session 11 functions and objects
11. session 11   functions and objects11. session 11   functions and objects
11. session 11 functions and objects
Phúc Đỗ
 
10. session 10 loops and arrays
10. session 10   loops and arrays10. session 10   loops and arrays
10. session 10 loops and arrays
Phúc Đỗ
 
09. session 9 operators and statements
09. session 9   operators and statements09. session 9   operators and statements
09. session 9 operators and statements
Phúc Đỗ
 
08. session 08 intoduction to javascript
08. session 08   intoduction to javascript08. session 08   intoduction to javascript
08. session 08 intoduction to javascript
Phúc Đỗ
 
07. session 07 adv css properties
07. session 07   adv css properties07. session 07   adv css properties
07. session 07 adv css properties
Phúc Đỗ
 
06. session 06 css color_andlayoutpropeties
06. session 06   css color_andlayoutpropeties06. session 06   css color_andlayoutpropeties
06. session 06 css color_andlayoutpropeties
Phúc Đỗ
 
05. session 05 introducing css
05. session 05   introducing css05. session 05   introducing css
05. session 05 introducing css
Phúc Đỗ
 
04. session 04 working withformsandframes
04. session 04   working withformsandframes04. session 04   working withformsandframes
04. session 04 working withformsandframes
Phúc Đỗ
 
03. session 03 using lists and tables
03. session 03   using lists and tables03. session 03   using lists and tables
03. session 03 using lists and tables
Phúc Đỗ
 
15. session 15 data binding
15. session 15   data binding15. session 15   data binding
15. session 15 data binding
Phúc Đỗ
 
15. session 15 data binding
15. session 15   data binding15. session 15   data binding
15. session 15 data binding
Phúc Đỗ
 
14. session 14 dhtml filter
14. session 14   dhtml filter14. session 14   dhtml filter
14. session 14 dhtml filter
Phúc Đỗ
 
13. session 13 introduction to dhtml
13. session 13   introduction to dhtml13. session 13   introduction to dhtml
13. session 13 introduction to dhtml
Phúc Đỗ
 
12. session 12 java script objects
12. session 12   java script objects12. session 12   java script objects
12. session 12 java script objects
Phúc Đỗ
 
11. session 11 functions and objects
11. session 11   functions and objects11. session 11   functions and objects
11. session 11 functions and objects
Phúc Đỗ
 
10. session 10 loops and arrays
10. session 10   loops and arrays10. session 10   loops and arrays
10. session 10 loops and arrays
Phúc Đỗ
 
09. session 9 operators and statements
09. session 9   operators and statements09. session 9   operators and statements
09. session 9 operators and statements
Phúc Đỗ
 
08. session 08 intoduction to javascript
08. session 08   intoduction to javascript08. session 08   intoduction to javascript
08. session 08 intoduction to javascript
Phúc Đỗ
 
07. session 07 adv css properties
07. session 07   adv css properties07. session 07   adv css properties
07. session 07 adv css properties
Phúc Đỗ
 
06. session 06 css color_andlayoutpropeties
06. session 06   css color_andlayoutpropeties06. session 06   css color_andlayoutpropeties
06. session 06 css color_andlayoutpropeties
Phúc Đỗ
 
05. session 05 introducing css
05. session 05   introducing css05. session 05   introducing css
05. session 05 introducing css
Phúc Đỗ
 
04. session 04 working withformsandframes
04. session 04   working withformsandframes04. session 04   working withformsandframes
04. session 04 working withformsandframes
Phúc Đỗ
 
03. session 03 using lists and tables
03. session 03   using lists and tables03. session 03   using lists and tables
03. session 03 using lists and tables
Phúc Đỗ
 
15. session 15 data binding
15. session 15   data binding15. session 15   data binding
15. session 15 data binding
Phúc Đỗ
 

Recently uploaded (20)

Fortinet Certified Associate in Cybersecurity
Fortinet Certified Associate in CybersecurityFortinet Certified Associate in Cybersecurity
Fortinet Certified Associate in Cybersecurity
VICTOR MAESTRE RAMIREZ
 
Improving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevExImproving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevEx
Justin Reock
 
Palo Alto Networks Cybersecurity Foundation
Palo Alto Networks Cybersecurity FoundationPalo Alto Networks Cybersecurity Foundation
Palo Alto Networks Cybersecurity Foundation
VICTOR MAESTRE RAMIREZ
 
LSNIF: Locally-Subdivided Neural Intersection Function
LSNIF: Locally-Subdivided Neural Intersection FunctionLSNIF: Locally-Subdivided Neural Intersection Function
LSNIF: Locally-Subdivided Neural Intersection Function
Takahiro Harada
 
UiPath Community Berlin: Studio Tips & Tricks and UiPath Insights
UiPath Community Berlin: Studio Tips & Tricks and UiPath InsightsUiPath Community Berlin: Studio Tips & Tricks and UiPath Insights
UiPath Community Berlin: Studio Tips & Tricks and UiPath Insights
UiPathCommunity
 
TrustArc Webinar: Mastering Privacy Contracting
TrustArc Webinar: Mastering Privacy ContractingTrustArc Webinar: Mastering Privacy Contracting
TrustArc Webinar: Mastering Privacy Contracting
TrustArc
 
Grannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI ExperiencesGrannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI Experiences
Lauren Parr
 
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Nikki Chapple
 
ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....
ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....
ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....
Jasper Oosterveld
 
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 ADr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr. Jimmy Schwarzkopf
 
Introducing FME Realize: A New Era of Spatial Computing and AR
Introducing FME Realize: A New Era of Spatial Computing and ARIntroducing FME Realize: A New Era of Spatial Computing and AR
Introducing FME Realize: A New Era of Spatial Computing and AR
Safe Software
 
Supercharge Your AI Development with Local LLMs
Supercharge Your AI Development with Local LLMsSupercharge Your AI Development with Local LLMs
Supercharge Your AI Development with Local LLMs
Francesco Corti
 
Cybersecurity Fundamentals: Apprentice - Palo Alto Certificate
Cybersecurity Fundamentals: Apprentice - Palo Alto CertificateCybersecurity Fundamentals: Apprentice - Palo Alto Certificate
Cybersecurity Fundamentals: Apprentice - Palo Alto Certificate
VICTOR MAESTRE RAMIREZ
 
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
James Anderson
 
Microsoft Build 2025 takeaways in one presentation
Microsoft Build 2025 takeaways in one presentationMicrosoft Build 2025 takeaways in one presentation
Microsoft Build 2025 takeaways in one presentation
Digitalmara
 
Kubernetes Cloud Native Indonesia Meetup - May 2025
Kubernetes Cloud Native Indonesia Meetup - May 2025Kubernetes Cloud Native Indonesia Meetup - May 2025
Kubernetes Cloud Native Indonesia Meetup - May 2025
Prasta Maha
 
Multistream in SIP and NoSIP @ OpenSIPS Summit 2025
Multistream in SIP and NoSIP @ OpenSIPS Summit 2025Multistream in SIP and NoSIP @ OpenSIPS Summit 2025
Multistream in SIP and NoSIP @ OpenSIPS Summit 2025
Lorenzo Miniero
 
New Ways to Reduce Database Costs with ScyllaDB
New Ways to Reduce Database Costs with ScyllaDBNew Ways to Reduce Database Costs with ScyllaDB
New Ways to Reduce Database Costs with ScyllaDB
ScyllaDB
 
AI Trends - Mary Meeker
AI Trends - Mary MeekerAI Trends - Mary Meeker
AI Trends - Mary Meeker
Razin Mustafiz
 
Maxx nft market place new generation nft marketing place
Maxx nft market place new generation nft marketing placeMaxx nft market place new generation nft marketing place
Maxx nft market place new generation nft marketing place
usersalmanrazdelhi
 
Fortinet Certified Associate in Cybersecurity
Fortinet Certified Associate in CybersecurityFortinet Certified Associate in Cybersecurity
Fortinet Certified Associate in Cybersecurity
VICTOR MAESTRE RAMIREZ
 
Improving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevExImproving Developer Productivity With DORA, SPACE, and DevEx
Improving Developer Productivity With DORA, SPACE, and DevEx
Justin Reock
 
Palo Alto Networks Cybersecurity Foundation
Palo Alto Networks Cybersecurity FoundationPalo Alto Networks Cybersecurity Foundation
Palo Alto Networks Cybersecurity Foundation
VICTOR MAESTRE RAMIREZ
 
LSNIF: Locally-Subdivided Neural Intersection Function
LSNIF: Locally-Subdivided Neural Intersection FunctionLSNIF: Locally-Subdivided Neural Intersection Function
LSNIF: Locally-Subdivided Neural Intersection Function
Takahiro Harada
 
UiPath Community Berlin: Studio Tips & Tricks and UiPath Insights
UiPath Community Berlin: Studio Tips & Tricks and UiPath InsightsUiPath Community Berlin: Studio Tips & Tricks and UiPath Insights
UiPath Community Berlin: Studio Tips & Tricks and UiPath Insights
UiPathCommunity
 
TrustArc Webinar: Mastering Privacy Contracting
TrustArc Webinar: Mastering Privacy ContractingTrustArc Webinar: Mastering Privacy Contracting
TrustArc Webinar: Mastering Privacy Contracting
TrustArc
 
Grannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI ExperiencesGrannie’s Journey to Using Healthcare AI Experiences
Grannie’s Journey to Using Healthcare AI Experiences
Lauren Parr
 
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Protecting Your Sensitive Data with Microsoft Purview - IRMS 2025
Nikki Chapple
 
ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....
ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....
ELNL2025 - Unlocking the Power of Sensitivity Labels - A Comprehensive Guide....
Jasper Oosterveld
 
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 ADr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr Jimmy Schwarzkopf presentation on the SUMMIT 2025 A
Dr. Jimmy Schwarzkopf
 
Introducing FME Realize: A New Era of Spatial Computing and AR
Introducing FME Realize: A New Era of Spatial Computing and ARIntroducing FME Realize: A New Era of Spatial Computing and AR
Introducing FME Realize: A New Era of Spatial Computing and AR
Safe Software
 
Supercharge Your AI Development with Local LLMs
Supercharge Your AI Development with Local LLMsSupercharge Your AI Development with Local LLMs
Supercharge Your AI Development with Local LLMs
Francesco Corti
 
Cybersecurity Fundamentals: Apprentice - Palo Alto Certificate
Cybersecurity Fundamentals: Apprentice - Palo Alto CertificateCybersecurity Fundamentals: Apprentice - Palo Alto Certificate
Cybersecurity Fundamentals: Apprentice - Palo Alto Certificate
VICTOR MAESTRE RAMIREZ
 
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
GDG Cloud Southlake #43: Tommy Todd: The Quantum Apocalypse: A Looming Threat...
James Anderson
 
Microsoft Build 2025 takeaways in one presentation
Microsoft Build 2025 takeaways in one presentationMicrosoft Build 2025 takeaways in one presentation
Microsoft Build 2025 takeaways in one presentation
Digitalmara
 
Kubernetes Cloud Native Indonesia Meetup - May 2025
Kubernetes Cloud Native Indonesia Meetup - May 2025Kubernetes Cloud Native Indonesia Meetup - May 2025
Kubernetes Cloud Native Indonesia Meetup - May 2025
Prasta Maha
 
Multistream in SIP and NoSIP @ OpenSIPS Summit 2025
Multistream in SIP and NoSIP @ OpenSIPS Summit 2025Multistream in SIP and NoSIP @ OpenSIPS Summit 2025
Multistream in SIP and NoSIP @ OpenSIPS Summit 2025
Lorenzo Miniero
 
New Ways to Reduce Database Costs with ScyllaDB
New Ways to Reduce Database Costs with ScyllaDBNew Ways to Reduce Database Costs with ScyllaDB
New Ways to Reduce Database Costs with ScyllaDB
ScyllaDB
 
AI Trends - Mary Meeker
AI Trends - Mary MeekerAI Trends - Mary Meeker
AI Trends - Mary Meeker
Razin Mustafiz
 
Maxx nft market place new generation nft marketing place
Maxx nft market place new generation nft marketing placeMaxx nft market place new generation nft marketing place
Maxx nft market place new generation nft marketing place
usersalmanrazdelhi
 

02. session 02 working with html elements

  • 1. Working with HTML Elements Session 2
  • 2. Contents Explain the basic formatting elements. Explain the color properties. Explain the phrase elements. Explain the image element. Explain hyperlinks. Building Dynamic Websites/Session 2/ of 28
  • 3. Basic text elements Providing a flow to the contents. Making the web page comprehensible. P BR HR H1 – H6 PRE Building Dynamic Websites/Session 2/ of 28
  • 4. Heading levels <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;> <HTML><HEAD> <TITLE>Search engines</TITLE> <BODY> <H1>H1 Heading</H1> <H2>H2 Heading</H2> <H3>H3 Heading</H3> <H4>H4 Heading</H4> <H5>H5 Heading</H5> <H6>H6 Heading</H6> </BODY> </HTML> Building Dynamic Websites/Session 2/ of 28
  • 5. Heading level Building Dynamic Websites/Session 2/ of 28
  • 6. Address element To be a container element. Enclosed: The address Contact information. A link to the home page. A search string feature. Copyright information. Building Dynamic Websites/Session 2/ of 28
  • 7. Address element <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;> <HTML><HEAD> <TITLE>Address element</TITLE> <BODY> This is an example of ADDRESS element. <HR/> <ADDRESS> VEST Technologies<BR/> Building 009, West Road<BR/> Canberra<BR/> USA </ADDRESS> </BODY> </HTML> Building Dynamic Websites/Session 2/ of 28
  • 8. Address element Building Dynamic Websites/Session 2/ of 28
  • 9. TT element Displaying text such as telewriter type. <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;> <HTML><HEAD> <TITLE>TT element</TITLE> <BODY> TT element renders <TT>teletype</TT> or <TT>monospaced</TT> text. </BODY> </HTML> Building Dynamic Websites/Session 2/ of 28
  • 10. TT element Building Dynamic Websites/Session 2/ of 28
  • 11. Character entity Building Dynamic Websites/Session 2/ of 28 Symbol name Entity name Entity number Ampersand (&) &amp; &#38; Greater than (>) &gt; &#62 Less than (<) &lt; &#60 non-breaking space &nbsp; &#160 Quotation mark (“ “) &quot; &#34
  • 12. Basic formatting B BIG I SMALL U Building Dynamic Websites/Session 2/ of 28
  • 13. Update and Shiting text DEL INS STRONG SUB SUP Building Dynamic Websites/Session 2/ of 28
  • 14. Color property The color name is listed to validate and process with HTML page. The color property specifies one of these colors to be applied to the textual content. Building Dynamic Websites/Session 2/ of 28
  • 15. Color property Building Dynamic Websites/Session 2/ of 28 Color Hexadecimal Value Aqua #00FFFF Fuchsia #FF00FF Gray #808080 Maroon #800000 Navy #000080 Olive #808000 Purple #800080 Silver #C0C0C0 Teal #008080
  • 16. Phrase elements There are certain phrase elements. Displaying a program code in different font emphasizing with a different look. Building Dynamic Websites/Session 2/ of 28
  • 17. Phrase elements Building Dynamic Websites/Session 2/ of 28 Element Description CODE Displaying the computer program. DFN Displaying the defination of a term. EM Emphasizing the enclosed text SAMP Displaying a sample output of computer programs. VAR Displaying a variable name that refers to a block of memory and holds a value which is referred by the variable name.
  • 19. Phrase elements <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;> <HTML><HEAD> <TITLE>Phrase Elements</TITLE> <BODY> <H3>Microsoft Excel</H3><HR/> Microsoft Excel: <DFN>is the spreadsheet program.</DFN> <P><CODE>=SUM(first cell address:last cell address)</CODE> is the function that add values appearing in the given cell range.<BR/> Building Dynamic Websites/Session 2/ of 28
  • 20. Phrase elements The <EM>first cell address</EM> is the address of the starting the cell from where you want to start the addition operation. The <EM>last cell address</EM> is the address of the last the cell till where you want to add the values.<BR/> The <CODE>SUM</CODE> function adds all numeric values existing in the cells between the first cell and the last cell.</P> An example of <CODE>SUM</CODE> function: <SAMP>=SUM(A1:A3)</SAMP> </BODY> </HTML> Building Dynamic Websites/Session 2/ of 28
  • 21. Phrase elements Building Dynamic Websites/Session 2/ of 28
  • 22. SPAN and DIV element These element defines a section in a web page. DIV is a block level element. SPAN is an in-line level element. Building Dynamic Websites/Session 2/ of 28
  • 23. IMG element SRC WIDTH HEIGHT ALT LONGDESC ALIGN USEMAP Building Dynamic Websites/Session 2/ of 28
  • 24. Image maps There are diferrent areas that act as links in an image. Map element AREA element Building Dynamic Websites/Session 2/ of 28
  • 25. Image maps <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/html4/loose.dtd&quot;> <HTML><HEAD> <TITLE>Search engines</TITLE> <BODY> <H2>Search engines</H2> <MAP name=&quot;searchmap&quot;> <AREA href=&quot;http://www.google.com&quot; alt=&quot;Google&quot; shape=&quot;rect&quot; coords=&quot;0,0,170,35&quot;/> <AREA href=&quot;http://www.ask.com&quot; alt=&quot;Ask&quot; shape=&quot;rect&quot; coords=&quot;0,28,170,70&quot;/> </MAP> <img src=&quot;SearchEngines.JPG&quot; alt=&quot;Search Engines&quot; width=&quot;286&quot; height=&quot;99&quot; usemap=&quot;#searchmap&quot;/> </BODY> </HTML> Building Dynamic Websites/Session 2/ of 28
  • 26. Image maps Building Dynamic Websites/Session 2/ of 28
  • 27. Hyperlinks HREF HREFLANG NAME TARGET TITLE Building Dynamic Websites/Session 2/ of 28
  • 28. Summary Basic text elements providing a flow to the contents. Address element enclosed the contact information. W3C defined 16 color name for HTML. Phrase elements display code in different font emphasizing with a different look. There are diferrent areas that act as links in an image. Mailto link allows sending emails Building Dynamic Websites/Session 2/ of 28