SlideShare une entreprise Scribd logo
1  sur  27
Introduction to HTML
LECTURE 2
COURSE INSTRUCTOR: Raya Idrissa
TheStateUniversityOfZanzibar
1
INF 003: Website Design and Development
The Hypertext Markup Language (HTML)
• Hypertext Markup Language (HTML) is the main markup
language for displaying web pages and other information
that can be displayed in a web browser.
• HTML is the mother of web programming.
• It is written in the form of HTML elements consisting of
tags enclosed in angle brackets (like <html>).
TheStateUniversityOfZanzibar
2
Versions of HTML
• There are several different version of HTML
 HTML 1.0, 2.0, 3.2, 4.0, 4.01 and 5
 XHTML 1.0, 1.1, 2.0
• HTML 4.01 and XHTML 1.0 come in different flavours
TheStateUniversityOfZanzibar
3
HTMLDocument
• Html file extensions: .html or .htm
• You can create html documents using:
 Notepad in Windows and TextEdit (MAC OS X)
• You can also use HTML Editors such as
 Dreamweaver.
 Front page
 Notepad++
TheStateUniversityOfZanzibar
4
Structure of an HTMLDocument
• To build any web page you will need four primary tags:
<html>, <head>, <title> and <body>.
TheStateUniversityOfZanzibar
5
<!DOCTYPE HTML>
<html>
<head>
<title>The Hello World Page</title>
</head>
<body>
</body>
</html>
DOCTYPEs
• A DTD, or “Document Type Definition” describes the syntax
to use for the current documentDDD
• What Does the DOCTYPE Declaration (DTD) Do?
 When performing HTML validation testing on a web
page it tells the HTML (Hypertext Markup Language)
validator which version of (X)HTML standard the
web page coding is supposed to comply with.
 It tells the browser how to render the page in
standards compliant mode.
TheStateUniversityOfZanzibar
6
DOCTYPEs
• What Happens If the DOCTYPE Declaration (DTD) is
Not Included or is Incorrect?
 You will not be able to use a HTML (Hypertext
Markup Language) Validator to check the page
coding.
 HTML validation requires the DOCTYPE
declaration.
 The browser rending the web page will process the
coding as it would appear in older browsers.
 The stylesheet may not be implemented as planned.
TheStateUniversityOfZanzibar
7
HTMLelements
• HTML documents are defined by HTML elements.
• HTML Element Syntax
 An HTML element starts with a start tag / opening
tag
 An HTML element ends with an end tag / closing tag
 The element content is everything between the start
and the end tag
 Some HTML elements have empty content
 Empty elements are closed in the start tag 8
HTMLelements
TheStateUniversityOfZanzibar
9
Start tag * Element content End tag *
<p>
This is a
paragraph
</p>
<a
href="default.htm"
>
This is a link </a>
<br />
HTMLAttributes
• Most HTML elements can have attributes
• Attributes provide additional information about HTML elements.
• Attributes are always specified in the start tag
• Attributes come in name/value pairs like: name="value“
• Attribute values should always be enclosed in quotes.
TheStateUniversityOfZanzibar
10
<a align="center">This is a paragraph</a>
The Document HEAD
• The head element is a container for all the head elements.
• Elements inside <head> can include:
 TITLE element: The title typically appears in a
Browser's title bar
 Meta tag: Describe metadata within an HTML
document used to describe the content (used by Search
engines)
 Base element : Defines a default address or a default
target for all links on a page
TheStateUniversityOfZanzibar
11
The Document HEAD
 Link element : Defines the relationship
between a document and an external
resource
 style Element : Defines style information
for a document
 script tag: is used to define a client-side
script, such as a JavaScript.
TheStateUniversityOfZanzibar
12
The Document BODY
• The BODY contains the document itself, i.e., what the user
sees
• Any text (also called character data or cdata) within the
body must be contained within some other tag
TheStateUniversityOfZanzibar
13
<!DOCTYPE HTML">
<html>
<head>
<title>OUR FIRST HTML PAGE</title>
</head>
<body>
<p>Your HTML content here</p>
</body>
TheStateUniversityOfZanzibar
14
<!DOCTYPE HTML">
<html>
<head>
<title>OUR FIRST HTML
PAGE</title>
</head>
<body>
<p>Your HTML content
here</p>
</body>
</html>
Headings
• Headings are marked with h1, h2, ..., h5 tags
• hn denotes an nth level heading.
• Each successive heading element (i.e., h2, h3, etc.) is
typically rendered in a progressively smaller font.
TheStateUniversityOfZanzibar
15
Headings
TheStateUniversityOfZanzibar
16
<!DOCTYPE HTML>
<html>
<head>
<title>Headings</title>
</head>
<body>
<h1>Level 1 Heading</h1>
<h2>Level 2 Heading</h2>
<h3>Level 3 Heading</h3>
<h4>Level 4 Heading</h4>
<h5>Level 5 Heading</h5>
<h6>Level 6 Heading</h6>
</body>
</html>
Paragraphs
• The P tag is used to enclose a paragraph of text
• Paragraphs appear formatted as you would expected
TheStateUniversityOfZanzibar
17
<p>In the case of a private wedding
announcement cards should be mailed the
following day to all relatives and
acquaintances of both the contracting parties.
</p>
<p>Evening weddings are no longer the custom,
and the fashionable hour is now high noon
</p>
HTMLFormatting Tags
• HTML uses tags like <b> and <i> for formatting output, like
bold or italic text.
TheStateUniversityOfZanzibar
18
Formatting Tag Description
<b> Defines bold text
<big> Defines big text
<em> Defines emphasized text
<i> Defines italic text
<small> Defines small text
<strong> Defines strong text
<sub> Defines subscripted text
<sup> Defines superscripted text
<ins> Defines inserted text
<del> Defines deleted text
Line Breaks
• For a quick and dirty line break you can use the BR tag
• Normally you should avoid this
• Why are you breaking the line?
 For a list of items (or menu): use <ul>
 To shorten a line: let the browser wrap it
 For preformatted text: use the <pre> tag
TheStateUniversityOfZanzibar
19
Horizontal Lines
• Horizontal lines are used to visually break up
sections of a document.
• The <hr /> tag creates a line from the current
position in the document to the right margin and
breaks the line accordingly.
<p> This is paragraph one and should be on top </p>
<hr />
<p>This is paragraph two and should be at bottom</p>
Working with colors
• Color is an important part of any web site
• But color blindness is far more prevalent than most web
designers realize
• There must be sufficient contrast between backgrounds and
text so that the user can read the content
• Colors are displayed combining RED, GREEN, and BLUE
light
TheStateUniversityOfZanzibar
21
Working with colors
• HTML colors are defined using a hexadecimal notation
(HEX) for the combination of Red, Green, and Blue color
values (RGB)
• HEX values are specified as 3 pairs of two-digit numbers,
starting with a # sign.
TheStateUniversityOfZanzibar
22
HTMLColors
• There are16 Million Different Colors
HTMLColor Names
• The following is a list of some of color names
Example
<p style="background-color:#FFFF00">
Color set by using hex value
</p>
<p style="background-color:rgb(255,255,0)">
Color set by using rgb value
</p>
<p style="background-color:yellow">
Color set by using color name
</p>
HTML<font> Tag. Not Supported in
HTML5.
• The <font> tag is not supported in HTML5. Use CSS instead.
• The <font> tag specifies the font face, font size, and color of text.
TheStateUniversityOfZanzibar
26
<!DOCTYPE html>
<html>
<body>
<p><font size="3" color="red">This is text!</font></p>
<p><font face="verdana" color="green">This is
text</font></p>
<p><strong>Note:</strong> The font element is not
supported in HTML5. Use CSS instead.</p>
</body>
</html>
TheStateUniversityOfZanzibar
27

Contenu connexe

Tendances

Tendances (20)

The Difference between HTML, XHTML & HTML5 for Beginners
The Difference between HTML, XHTML & HTML5 for BeginnersThe Difference between HTML, XHTML & HTML5 for Beginners
The Difference between HTML, XHTML & HTML5 for Beginners
 
Introduction to HTML
Introduction to HTML Introduction to HTML
Introduction to HTML
 
Cse html ppt
Cse html pptCse html ppt
Cse html ppt
 
Basic Html Knowledge for students
Basic Html Knowledge for studentsBasic Html Knowledge for students
Basic Html Knowledge for students
 
HTML (Hyper Text Markup Language)
HTML (Hyper Text Markup Language)HTML (Hyper Text Markup Language)
HTML (Hyper Text Markup Language)
 
Basic html
Basic htmlBasic html
Basic html
 
HTML Introduction
HTML IntroductionHTML Introduction
HTML Introduction
 
Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]Introduction to basic HTML [Librarian edition]
Introduction to basic HTML [Librarian edition]
 
Html basics
Html basicsHtml basics
Html basics
 
BasicHTML
BasicHTMLBasicHTML
BasicHTML
 
Html - Tutorial
Html - TutorialHtml - Tutorial
Html - Tutorial
 
Design Tools Html Xhtml
Design Tools Html XhtmlDesign Tools Html Xhtml
Design Tools Html Xhtml
 
Html for Beginners
Html for BeginnersHtml for Beginners
Html for Beginners
 
Html For Beginners 2
Html For Beginners 2Html For Beginners 2
Html For Beginners 2
 
Intr To Html & Xhtml
Intr To Html & XhtmlIntr To Html & Xhtml
Intr To Html & Xhtml
 
Html grade 11
Html grade 11Html grade 11
Html grade 11
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Html ppt
Html pptHtml ppt
Html ppt
 
Lesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and ParagraphsLesson plan: HTML Formatting Texts and Paragraphs
Lesson plan: HTML Formatting Texts and Paragraphs
 
Xhtml
XhtmlXhtml
Xhtml
 

Similaire à Lecture 2 introduction to html basics

introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.pptSri Latha
 
HTML is a markup language used by the browser to manipulate text, images, and...
HTML is a markup language used by the browser to manipulate text, images, and...HTML is a markup language used by the browser to manipulate text, images, and...
HTML is a markup language used by the browser to manipulate text, images, and...ssuser6478a8
 
introdution-to-html (1).ppt
introdution-to-html (1).pptintrodution-to-html (1).ppt
introdution-to-html (1).pptF3ZONE1
 
introdution-to-html.ppt NJBJGHGJHGGJGJG
introdution-to-html.ppt  NJBJGHGJHGGJGJGintrodution-to-html.ppt  NJBJGHGJHGGJGJG
introdution-to-html.ppt NJBJGHGJHGGJGJGAMRITHA16
 
introdution-to-html.ppt jahjdbsfhbdhdbjkgbe
introdution-to-html.ppt jahjdbsfhbdhdbjkgbeintrodution-to-html.ppt jahjdbsfhbdhdbjkgbe
introdution-to-html.ppt jahjdbsfhbdhdbjkgbeJamaicaCabrales
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.pptGezahegnHailu1
 
introdution-to-html programming and dhtml
introdution-to-html programming and dhtmlintrodution-to-html programming and dhtml
introdution-to-html programming and dhtmlsanthosh sriprada
 
introduction to html.ppt
introduction to html.pptintroduction to html.ppt
introduction to html.pptVincentAcapen
 
introdution-to-html.ppt for bca ,bsc students
introdution-to-html.ppt for bca ,bsc studentsintrodution-to-html.ppt for bca ,bsc students
introdution-to-html.ppt for bca ,bsc studentsMaheshMutnale1
 
introdution-to-html-introdution-to-html.ppt
introdution-to-html-introdution-to-html.pptintrodution-to-html-introdution-to-html.ppt
introdution-to-html-introdution-to-html.pptmarkgilvinson
 
introdution-to-html_jayarao27_11_22.pptx
introdution-to-html_jayarao27_11_22.pptxintrodution-to-html_jayarao27_11_22.pptx
introdution-to-html_jayarao27_11_22.pptxjayarao21
 
Web forms and html (lect 1)
Web forms and html (lect 1)Web forms and html (lect 1)
Web forms and html (lect 1)Salman Memon
 
introdution-to-html[1].ppt
introdution-to-html[1].pptintrodution-to-html[1].ppt
introdution-to-html[1].pptssuserec53e73
 

Similaire à Lecture 2 introduction to html basics (20)

HTML & CSS.ppt
HTML & CSS.pptHTML & CSS.ppt
HTML & CSS.ppt
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
summary html.ppt
summary html.pptsummary html.ppt
summary html.ppt
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
HTML is a markup language used by the browser to manipulate text, images, and...
HTML is a markup language used by the browser to manipulate text, images, and...HTML is a markup language used by the browser to manipulate text, images, and...
HTML is a markup language used by the browser to manipulate text, images, and...
 
introdution-to-html (1).ppt
introdution-to-html (1).pptintrodution-to-html (1).ppt
introdution-to-html (1).ppt
 
introdution-to-html.ppt NJBJGHGJHGGJGJG
introdution-to-html.ppt  NJBJGHGJHGGJGJGintrodution-to-html.ppt  NJBJGHGJHGGJGJG
introdution-to-html.ppt NJBJGHGJHGGJGJG
 
html.pptx
html.pptxhtml.pptx
html.pptx
 
introdution-to-html.ppt jahjdbsfhbdhdbjkgbe
introdution-to-html.ppt jahjdbsfhbdhdbjkgbeintrodution-to-html.ppt jahjdbsfhbdhdbjkgbe
introdution-to-html.ppt jahjdbsfhbdhdbjkgbe
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
introdution-to-html programming and dhtml
introdution-to-html programming and dhtmlintrodution-to-html programming and dhtml
introdution-to-html programming and dhtml
 
introduction to html.ppt
introduction to html.pptintroduction to html.ppt
introduction to html.ppt
 
introdution-to-html.ppt for bca ,bsc students
introdution-to-html.ppt for bca ,bsc studentsintrodution-to-html.ppt for bca ,bsc students
introdution-to-html.ppt for bca ,bsc students
 
introdution-to-html-introdution-to-html.ppt
introdution-to-html-introdution-to-html.pptintrodution-to-html-introdution-to-html.ppt
introdution-to-html-introdution-to-html.ppt
 
mst_unit1.pptx
mst_unit1.pptxmst_unit1.pptx
mst_unit1.pptx
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
introdution-to-html_jayarao27_11_22.pptx
introdution-to-html_jayarao27_11_22.pptxintrodution-to-html_jayarao27_11_22.pptx
introdution-to-html_jayarao27_11_22.pptx
 
Web forms and html (lect 1)
Web forms and html (lect 1)Web forms and html (lect 1)
Web forms and html (lect 1)
 
introdution-to-html[1].ppt
introdution-to-html[1].pptintrodution-to-html[1].ppt
introdution-to-html[1].ppt
 

Dernier

2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge GraphsEleniIlkou
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubaikojalkojal131
 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...SUHANI PANDEY
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024APNIC
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLimonikaupta
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.soniya singh
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.soniya singh
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...SUHANI PANDEY
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...singhpriety023
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Servicegwenoracqe6
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Delhi Call girls
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersDamian Radcliffe
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝soniya singh
 

Dernier (20)

(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
(INDIRA) Call Girl Pune Call Now 8250077686 Pune Escorts 24x7
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls DubaiDubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
Dubai=Desi Dubai Call Girls O525547819 Outdoor Call Girls Dubai
 
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
Shikrapur - Call Girls in Pune Neha 8005736733 | 100% Gennuine High Class Ind...
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Sarai Rohilla Escort Service Delhi N.C.R.
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
 
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Prashant Vihar, Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...Russian Call Girls Pune  (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
Russian Call Girls Pune (Adult Only) 8005736733 Escort Service 24x7 Cash Pay...
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
 
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Pratap Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
 
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
6.High Profile Call Girls In Punjab +919053900678 Punjab Call GirlHigh Profil...
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
 
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
VVVIP Call Girls In Connaught Place ➡️ Delhi ➡️ 9999965857 🚀 No Advance 24HRS...
 

Lecture 2 introduction to html basics

  • 1. Introduction to HTML LECTURE 2 COURSE INSTRUCTOR: Raya Idrissa TheStateUniversityOfZanzibar 1 INF 003: Website Design and Development
  • 2. The Hypertext Markup Language (HTML) • Hypertext Markup Language (HTML) is the main markup language for displaying web pages and other information that can be displayed in a web browser. • HTML is the mother of web programming. • It is written in the form of HTML elements consisting of tags enclosed in angle brackets (like <html>). TheStateUniversityOfZanzibar 2
  • 3. Versions of HTML • There are several different version of HTML  HTML 1.0, 2.0, 3.2, 4.0, 4.01 and 5  XHTML 1.0, 1.1, 2.0 • HTML 4.01 and XHTML 1.0 come in different flavours TheStateUniversityOfZanzibar 3
  • 4. HTMLDocument • Html file extensions: .html or .htm • You can create html documents using:  Notepad in Windows and TextEdit (MAC OS X) • You can also use HTML Editors such as  Dreamweaver.  Front page  Notepad++ TheStateUniversityOfZanzibar 4
  • 5. Structure of an HTMLDocument • To build any web page you will need four primary tags: <html>, <head>, <title> and <body>. TheStateUniversityOfZanzibar 5 <!DOCTYPE HTML> <html> <head> <title>The Hello World Page</title> </head> <body> </body> </html>
  • 6. DOCTYPEs • A DTD, or “Document Type Definition” describes the syntax to use for the current documentDDD • What Does the DOCTYPE Declaration (DTD) Do?  When performing HTML validation testing on a web page it tells the HTML (Hypertext Markup Language) validator which version of (X)HTML standard the web page coding is supposed to comply with.  It tells the browser how to render the page in standards compliant mode. TheStateUniversityOfZanzibar 6
  • 7. DOCTYPEs • What Happens If the DOCTYPE Declaration (DTD) is Not Included or is Incorrect?  You will not be able to use a HTML (Hypertext Markup Language) Validator to check the page coding.  HTML validation requires the DOCTYPE declaration.  The browser rending the web page will process the coding as it would appear in older browsers.  The stylesheet may not be implemented as planned. TheStateUniversityOfZanzibar 7
  • 8. HTMLelements • HTML documents are defined by HTML elements. • HTML Element Syntax  An HTML element starts with a start tag / opening tag  An HTML element ends with an end tag / closing tag  The element content is everything between the start and the end tag  Some HTML elements have empty content  Empty elements are closed in the start tag 8
  • 9. HTMLelements TheStateUniversityOfZanzibar 9 Start tag * Element content End tag * <p> This is a paragraph </p> <a href="default.htm" > This is a link </a> <br />
  • 10. HTMLAttributes • Most HTML elements can have attributes • Attributes provide additional information about HTML elements. • Attributes are always specified in the start tag • Attributes come in name/value pairs like: name="value“ • Attribute values should always be enclosed in quotes. TheStateUniversityOfZanzibar 10 <a align="center">This is a paragraph</a>
  • 11. The Document HEAD • The head element is a container for all the head elements. • Elements inside <head> can include:  TITLE element: The title typically appears in a Browser's title bar  Meta tag: Describe metadata within an HTML document used to describe the content (used by Search engines)  Base element : Defines a default address or a default target for all links on a page TheStateUniversityOfZanzibar 11
  • 12. The Document HEAD  Link element : Defines the relationship between a document and an external resource  style Element : Defines style information for a document  script tag: is used to define a client-side script, such as a JavaScript. TheStateUniversityOfZanzibar 12
  • 13. The Document BODY • The BODY contains the document itself, i.e., what the user sees • Any text (also called character data or cdata) within the body must be contained within some other tag TheStateUniversityOfZanzibar 13 <!DOCTYPE HTML"> <html> <head> <title>OUR FIRST HTML PAGE</title> </head> <body> <p>Your HTML content here</p> </body>
  • 14. TheStateUniversityOfZanzibar 14 <!DOCTYPE HTML"> <html> <head> <title>OUR FIRST HTML PAGE</title> </head> <body> <p>Your HTML content here</p> </body> </html>
  • 15. Headings • Headings are marked with h1, h2, ..., h5 tags • hn denotes an nth level heading. • Each successive heading element (i.e., h2, h3, etc.) is typically rendered in a progressively smaller font. TheStateUniversityOfZanzibar 15
  • 16. Headings TheStateUniversityOfZanzibar 16 <!DOCTYPE HTML> <html> <head> <title>Headings</title> </head> <body> <h1>Level 1 Heading</h1> <h2>Level 2 Heading</h2> <h3>Level 3 Heading</h3> <h4>Level 4 Heading</h4> <h5>Level 5 Heading</h5> <h6>Level 6 Heading</h6> </body> </html>
  • 17. Paragraphs • The P tag is used to enclose a paragraph of text • Paragraphs appear formatted as you would expected TheStateUniversityOfZanzibar 17 <p>In the case of a private wedding announcement cards should be mailed the following day to all relatives and acquaintances of both the contracting parties. </p> <p>Evening weddings are no longer the custom, and the fashionable hour is now high noon </p>
  • 18. HTMLFormatting Tags • HTML uses tags like <b> and <i> for formatting output, like bold or italic text. TheStateUniversityOfZanzibar 18 Formatting Tag Description <b> Defines bold text <big> Defines big text <em> Defines emphasized text <i> Defines italic text <small> Defines small text <strong> Defines strong text <sub> Defines subscripted text <sup> Defines superscripted text <ins> Defines inserted text <del> Defines deleted text
  • 19. Line Breaks • For a quick and dirty line break you can use the BR tag • Normally you should avoid this • Why are you breaking the line?  For a list of items (or menu): use <ul>  To shorten a line: let the browser wrap it  For preformatted text: use the <pre> tag TheStateUniversityOfZanzibar 19
  • 20. Horizontal Lines • Horizontal lines are used to visually break up sections of a document. • The <hr /> tag creates a line from the current position in the document to the right margin and breaks the line accordingly. <p> This is paragraph one and should be on top </p> <hr /> <p>This is paragraph two and should be at bottom</p>
  • 21. Working with colors • Color is an important part of any web site • But color blindness is far more prevalent than most web designers realize • There must be sufficient contrast between backgrounds and text so that the user can read the content • Colors are displayed combining RED, GREEN, and BLUE light TheStateUniversityOfZanzibar 21
  • 22. Working with colors • HTML colors are defined using a hexadecimal notation (HEX) for the combination of Red, Green, and Blue color values (RGB) • HEX values are specified as 3 pairs of two-digit numbers, starting with a # sign. TheStateUniversityOfZanzibar 22
  • 23. HTMLColors • There are16 Million Different Colors
  • 24. HTMLColor Names • The following is a list of some of color names
  • 25. Example <p style="background-color:#FFFF00"> Color set by using hex value </p> <p style="background-color:rgb(255,255,0)"> Color set by using rgb value </p> <p style="background-color:yellow"> Color set by using color name </p>
  • 26. HTML<font> Tag. Not Supported in HTML5. • The <font> tag is not supported in HTML5. Use CSS instead. • The <font> tag specifies the font face, font size, and color of text. TheStateUniversityOfZanzibar 26 <!DOCTYPE html> <html> <body> <p><font size="3" color="red">This is text!</font></p> <p><font face="verdana" color="green">This is text</font></p> <p><strong>Note:</strong> The font element is not supported in HTML5. Use CSS instead.</p> </body> </html>