You are on page 1of 98

Cairo University

Faculty of Economics and Political Science


Socio-Computing Department

Introduction To Hypertext Markup


Language (HTML)

Prepared by: Nahed Taha & Noha Nagi


Edited by: Aya Mamdouh
Computer Applications in Modern Information Societies (1)
2021-2022
Section Content and Schedule
Week Date (Tentative) Topics to be Covered Projects
Introduction to HTML&
Week1 Starting to HTML using Notepad& HTML Elements &
Basic HTML Tags
Week 2 HTML Attributes& HTML Styles HTML Text Formatting  

Week 3 HTML COMMENTS, quotes and abbreviations HTML


Colors &HTML Divisions& HTML Links
HTML Images & HTML Tables & HTML Lists & sheet
Week 4
Revision
Introduction

3
Introduction

 HTML is a markup language for describing and


creating web documents (web pages).
 HTML stands for Hyper Text Markup Language.
 A markup language is a set of markup tags.
 HTML documents are described by  small HTML tags
that tell the Web browser how to display the page.
 Each HTML tag describes different document
content.
 An HTML file must have an htm or html file extension
(Ex. “MySite.html” or “MySite.htm”).
Introduction

HTML Text Displayed in Browser


<!DOCTYPE html>
<html> My First Heading HTML5 is the fifth
<head> and current version
<title>Page
My first paragraph. of the HTML
Title</title> standard.
</head>
<body>
Tag Description
<h1>My First <!DOCTYPE Defines this document to be HTML5
html> D <
Heading</h1> O
C !
<p>My first T
<html> and Defines an HTML document > YP
paragraph.</p> </html> E
<head> and Provides information about the
</body>
Using this description, </head> document
</html>
a web browser will <title> and Provides a title for the document
display a document </title>
with a heading and a
paragraph. <body> and Describes the visible page content.
</body>
Introduction

 HTML Tags
• HTML tags are keywords (tag names) surrounded by angle
brackets:
<tagname>content goes here...</tagname>
• HTML tags normally come in pairs like <p> and </p>.
• The first tag in a pair is the start tag, the second tag is the end
tag.
• The end tag is written like the start tag, but with a forward
slash inserted before the tag name.
• The start tag is also called the opening tag, and the end tag
the closing tag.
Introduction

 Web Browsers
• The purpose of a web browser (Chrome, IE, Firefox, Safari) is to
read HTML documents and display them.
• The browser does not display the HTML tags, but uses them to
determine how to display the document:
Activity
feps.edu.eg > Crtl + U to view page source
Activity
feps.edu.eg > Crtl + U to view page source

HTML!
Introduction

 HTML Page Structure


<html>

<head>

e
pl
Only the <body>

m
<title> Page Title </title>

a
section (the white

Ex
area) is displayed in a

st
</head>

ir
browser.

rF
<body>

ou
to
<h1> This is a heading </h1>

kc
Ba
<p> This is a paragraph </p>

<p> This is another paragraph </p>

</body>

</html>
Introduction

 The <!DOCTYPE> Declaration


• The <!DOCTYPE> declaration must only
appear once, at the top of the page, before the
<html> tag.

e
pl
m
• The <!DOCTYPE> declaration is not an HTML

a
Ex
tag; it is an instruction to the web browser

st
ir
rF
about what version of HTML the page is

ou
written in.

to
kc
<!DOCTYPEishtml>
• The doctype declaration not case sensitive.

Ba
All cases are acceptable:
<!doctype HTML>
Introduction

 HTML Editors
• Web pages can be created and modified by using professional
HTML editors.
• However, for learning HTML we recommend a simple text editor
like Notepad (PC) or TextEdit (Mac).
• Using a simple text editor is a good way to learn HTML.
• Follow the next section to create your first web page with
Notepad.

Starting with HTML Using


Notepad (PC)
Starting with HTML
Using Notepad (PC)

13
Starting with HTML

<!DOCTYPE html>
<html>
<body> 3
<h1>My First Heading</h1>

<p>My first paragraph.</p>

</body> Type this


</html> Text:

1
In computers, encoding is the
process of putting a sequence of

Starting with HTML characters (letters, numbers,


punctuation, and certain symbols)
into a specialized format for
efficient transmission or storage.
Ex. UTF-8 encoding will store
"hello" like this (binary): 01101000
01100101 01101100 01101100 
01101111

Set the encoding to Unicode Transformation


Format-8 (UTF-8) (which is the preferred
encoding for web pages)
4

6
You can use either .htm or .html as file 7
extension. There is no difference, it is
up to you.
Starting with HTML

Open the saved HTML file in


your favorite browser (double
click on the file, or right-click -
and choose "Open with").
The result will look much like
this:
HTML Elements

17
HTML Elements

 An HTML element usually consists of a start tag and end tag, with the


content inserted in between:
<tagname>content goes here...</tagname>
 The HTML element is everything from the start tag to the end tag:
<p>My first paragraph.</p>
Start Tag Element Content End Tag
<h1> My First Heading <h1>
<p> My first paragraph. </p>
<br> - -

Some HTML elements are empty (have no content)


and do not have an end tag, such as the <br> element
(which indicates a line break).
HTML Elements

 HTML elements can be nested (elements can contain elements).


 All HTML documents consist of nested HTML elements.
 For example, the below example contains four HTML elements:
HTML Example Explained
<!DOCTYPE html> The <html> element content is another HTML
<html> element (the <body> element).
<body>
The <body> element content is two other HTML
<h1>My First Heading</h1> elements (<h1> and <p>).
<p>My first paragraph.</p>
The <h1> element content is: My First Heading.
</body>
</html> The <p> element content is: My first paragraph.
HTML Elements

 Do Not Forget the End Tag


• Some HTML elements will display correctly, even if you forget the end
tag.
• Never rely on this.
• It might produce unexpected results and/or errors if you forget the
endHTML
tag. Example Explained
<html> This example works in all browsers, because the
<body> closing tag is considered optional.

<p>This is a
paragraph </p>
<p>This is a
paragraph </p>

</body>
</html>
HTML Elements

 Empty HTML Elements


• HTML elements with no content are called empty elements.
• <br> is an empty element without a closing tag (the <br> tag defines
a line break).
• Empty elements can be "closed" in the opening tag like this: <br />.
• HTML5 does not require empty elements to be closed. But if you want
stricter validation, or if you need to make your document readable, you
must
HTMLclose all HTML elements properly. Text Displayed in
Browser
<p>This is<br>a paragraph<br>with line This is
breaks</p> a paragraph
with line breaks

r > ent <p>This is<br/>a paragraph<br/>with line This is
b
< lem breaks</p> a paragraph
with line breaks
HTML Elements

 Use Lowercase Tags


• HTML tags are not case sensitive: <P> means the same as <p>.
• The HTML5 standard does not require lowercase tags, but
it recommends lowercase in HTML.

HTML Text Displayed in Browser


<html>
This is a paragraph
<body> ≡ This is a paragraph
<P>This is a
paragraph </P>
<p>This is a
paragraph </p>

</body>
</html>
Basic HTML Tags

23
HTML Headings Note: Use HTML
headings for headings
only. Don't use
headings to make
 Headings are important in HTML documents.
text BIG or bold.
 Headings are defined with the <h1> to <h6> tags.
 <h1> defines the most important heading. <h6> defines the least
important heading.
 Browsers automatically add some white space (a margin) before and
after a heading.
 Headings Are Important:
• Search engines use the headings to index the structure and content of your web
pages.
• Users skim your pages by its headings. It is important to use headings to
show the document structure.
• <h1> headings should be used for main headings, followed by <h2> headings,
then the less important <h3>, and so on.
HTML Headings

HTML Text Displayed in Browser


<html>
<body>
This is Heading 1
<h1> This is heading 1 </h1>
<h2> This is heading 2 </h2> This is heading 2
<h3> This is heading 3 </h3>
<h4> This is heading 4 </h4> This is heading 3
<h5> This is heading 5 </h5>
<h6> This is heading 6 </h6> This is heading 4

<p> Use heading tags only for


This is heading 5
headings. Don’t use them just to make This is heading 6
something bold. </p>
Use heading tags only for headings.
Don’t use them just to make something
</body>
</html> bold.
HTML Horizontal Ruler

 The <hr> tag defines a thematic break in an HTML page, and is most
often displayed as a horizontal rule.
 The <hr> element is used to separate content (or define a change) in an
HTML page:
HTML Text Displayed in Browser
<h1>This is heading 1</h1> This is heading 1
<p>This is some text.</p>
<hr> This is some text.

<h2>This is heading 2</h2> This is heading 2


<p>This is some other text.</p>
<hr> This is some other text.

<h2>This is heading 2</h2> This is heading 2


<p>This is some other text.</p>
This is some other text.
The HTML <head> Element 

 The HTML <head> element has nothing to do with HTML headings.


 The <head> element is a container for metadata (data about data).
 HTML metadata is data about the HTML document.
 Metadata is not displayed, but will be machine parsable. Metadata typically
define document title, styles, links, scripts, and other meta information.
 The following tags describe metadata: <title>, <style>, <meta>, <link>,
<script>, and <base>.
 For example, the <title> element defines the title of the document, and is
required in all HTML documents. The <title> element:
 Defines a title in the browser tab.
 Provides a title for the page when it is added to favorites.
 Displays a title for the page in search engine results.
The HTML <head> Element 
 The <head> element is placed between the <html> tag and the <body>
tag:
HTML Text Displayed in Browser
<!DOCTYPE html>
The HTML head element contains
<html>
<head> meta data.
<title>My First HTML</title>
Meta data is data about the HTML
</head>
<body> document.

<p>The HTML head element contains


meta data.</p>
<p>Meta data is data about the
HTML document.</p>

</body>
</html>
HTML Paragraphs 

 The HTML <p> element defines a paragraph:


HTML Text Displayed in Browser
<!DOCTYPE html>
This is a paragraph.
<html>
<body> This is a paragraph.
This is a paragraph.
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>
<p>This is a paragraph.</p>

</body>
</html> Note: Browsers
automatically add some
white space (a margin)
before and after a
paragraph.
HTML Paragraphs
HTML Text Displayed in Browser
<p> This paragraph contains a lot of lines in the source code, but
This paragraph the browser ignores it.
contains a lot of lines
in the source code, This paragraph contains a lot of spaces in the source code,
but the browser but the browser ignores it.
ignores it.
</p> The number of lines in a paragraph depends on the size of the
browser window. If you resize the browser window, the
<p> number of lines in this paragraph will change.
This paragraph
contains a lot of spaces
in the source code, Note: You cannot be sure how HTML will be displayed.
but the browser Large or small screens, and resized windows will create
ignores it. different results.
</p> With HTML, you cannot change the output by adding
extra spaces or extra lines in your HTML code.
<p>
The browser will remove any extra spaces and extra lines
The number of lines in a paragraph depends on the size of the
browser window. If you resize the browser window, the when the page is displayed.
number of lines in this paragraph will change. </p>
HTML Line Breaks 

 The HTML <br> element defines a line break.


 The <br> tag is an empty tag, which means that it has no end tag.
(Discussed before).
 Use <br> if you want a line break (a new line) without starting a new
HTML Text Displayed in Browser
paragraph:
<!DOCTYPE html> This is
<html> a paragraph
<body> with line breaks

<p>This is<br>a
paragraph<br>with line breaks</p>

</body>
</html>
The HTML <pre> Element 

 The HTML <pre> element defines preformatted text.


 The text inside a <pre> element is displayed in a fixed-width font
(usually Courier), and it preserves both spaces and line breaks:
HTML Text Displayed in Browser
<p>The pre tag preserves both spaces The pre tag preserves both spaces
and line breaks:</p> and line breaks:
<pre> My Bonnie lies over the ocean.
My Bonnie lies over the ocean. My Bonnie lies over the sea.

My Bonnie lies over the sea. My Bonnie lies over the ocean.
Oh, bring back my Bonnie to me.
My Bonnie lies over the ocean.

Oh, bring back my Bonnie to me.


</pre>
How to View HTML Source 

 Have you ever seen a Web page and wondered


"Hey! How did they do that?"

 To find out, right-click in the page and select


"View Page Source" (in Chrome) or "View
Source" (in IE), or similar in another browser. This
will open a window containing the HTML code of
the page.
HTML Attributes

34
HTML Attributes

 All HTML elements can have attributes.


 Attributes provide additional information about an element.
 Attributes are always specified in the start tag.
 Attributes usually come in name/value pairs like: name="value".
 The title attribute can be written with uppercase or lowercase
like Title and/or TITLE.
HTML Attributes

 The Lang Attribute


• The language of the document can be declared in the <html> tag.
• The language is declared with the lang attribute.
• Declaring a language is important for accessibility applications (screen
readers) and search engines:
HTML Example Explained
<!DOCTYPE html>
<html lang="en-US">
<body>
The first two letters specify the language (en). If
... there is a dialect, use two more letters (US).

</body>
</html>
HTML Attributes

 The href Attribute


• HTML links are defined with the <a> tag. The link address is specified in
the href attribute:
<a href="http://www.w3schools.com">This is a link</a>
• “a” stands for Anchor and “href” stands for Hypertext Reference.
• As with any HTML tag it is very important to close the tag. If you forget to
close your anchor tag, the rest of your document will appear as a hyperlink.

 Size Attributes
• HTML images are defined with the <img> tag.
• The filename of the source (src), and the size of the image
(width and height) are all provided as attributes:
<img src="w3schools.jpg" width="104" height="142">
HTML Attributes

 The alt Attribute


• The alt attribute specifies an alternative text to be used, when an image
cannot be displayed.
• The value of the attribute can be read by screen readers. This way, someone
"listening" to the webpage, e.g. a blind person, can "hear" the element.
<img src="w3schools.jpg" alt= "W3Schools.com" width=
"104" height= "142">

You will learn more about images, links and the <a> tag later in this
tutorial.
HTML Attributes

 Quote Attribute Values


• The HTML5 standard does not require quotes around attribute values.
• The href attribute, demonstrated above, can be written as:
<a href= http://www.w3schools.com>
HTML Text Displayed in Browser
<html> W3C is a link to a website on the
<body> World Wide Web.
W3C is a link to a website on the
<p><a World Wide Web.
href="http://www.w3.org/">W3C</a> is a
link to a website on the World Wide Web.</p>

<p><a href=http://www.w3.org/>W3C</a>
is a link to a website on the World Wide
Web.</p>

</body>
HTML Styles

40
HTML Styles

 Setting the style of an HTML element, can be done with the style


attribute.
 The HTML style attribute has the following syntax:
<tagname style="property :value;">
 Examples:
• Use background-color for background color.
• Use color for text colors.
• Use font-family for text fonts.
• Use font-size for text sizes.
• Use text-align for text alignment.
HTML Styles

 HTML Background Color


• The background-color property defines the background color for an
HTML element.
• HTML
This below example sets the background color for
Text Displayed a page to powderblue:
in Browser
<!DOCTYPE html>
<html> This is a heading
<body style="background-color:
This is a paragraph.
powderblue;">

<h1>This is a heading</h1>
<p>This is a paragraph.</p>

</body>
</html>
HTML Styles

 HTML Text Color


• The color property defines the text color for an HTML element:

HTML Text Displayed in Browser


<!DOCTYPE html>
<html> This is a heading
<body> This is a paragraph.
<h1 style="color :blue;">This is a
heading</h1>
<p style="color :red;">This is a
paragraph.</p>

</body>
</html>
HTML Styles

 HTML Fonts
• The font-family property defines the font to be used for an HTML
element:
HTML Text Displayed in Browser
<!DOCTYPE html>
<html> This is a heading
<body> This is a paragraph.
<h1 style="font-family :verdana;">This is a
heading</h1>
<p style="font-family :courier;">This is a
paragraph.</p>

</body>
</html>
HTML Styles

 HTML Text Size


• The font-size property defines the text size for an HTML element:

HTML Text Displayed in Browser


<!DOCTYPE html> This is a heading
<html>
<body> This is a paragraph.

<h1 style="font-size :300%;">This is a heading</h1>


<p style="font-size :160%;">This is a paragraph.</p>

</body>
</html>
HTML Styles

 HTML Text Alignment


• The text-align property defines the horizontal text alignment for an
HTML element:
HTML Text Displayed in Browser
<!DOCTYPE html>
<html> Centered Heading
<body> Centered paragraph.
<h1 style="text-align :center;">Centered
Heading</h1>
<p style="text-align :center;">Centered
paragraph.</p>

</body>
</html>
HTML Text Formatting

47
HTML Text Formatting

 In the previous section, you learned about the


HTML style attribute.
 HTML also defines special elements for defining
text with a special meaning.
 HTML uses elements like <b> and <i> for
formatting output, like bold or italic text.
 Formatting elements were designed to display
special types of text:
<b> - Bold text; <i> - Italic text; <mark> - Marked
text; <small> - Small text;<ins> - Subscript text;
<sup> - Superscript text.
HTML Text Formatting

 HTML <b> Element


• The HTML <b> element defines bold text, without any extra
importance.
HTML Text Displayed in Browser
<!DOCTYPE html> This text is normal.
<html>
This text is bold.
<body>

<p>This text is normal.</p>

<p><b>This text is bold.</b></p>

</body>
</html>
HTML Text Formatting

 HTML <i> Element


• The HTML <i> element defines italic text, without any extra importance.

HTML Text Displayed in Browser


<!DOCTYPE html> This text is normal.
<html>
This text is italic.
<body>

<p>This text is normal.</p>

<p><i>This text is italic.</i></p>

</body>
</html>
HTML Text Formatting

 HTML <u> Element


• The HTML <u> element defines underlined text, without any extra
importance.
HTML Text Displayed in Browser
<!DOCTYPE html> This text is normal.
<html>
This text is underlined.
<body>

<p>This text is normal.</p>

<p><u>This text is
underlined.</u></p>

</body>
</html>
HTML Text Formatting

 HTML <small> Element


• The HTML <small> element defines smaller text:

HTML Text Displayed in Browser


<!DOCTYPE html>
<html>
HTML Small Forma
<body> tting
<h2>HTML
<small>Small</small>
Formatting</h2>

</body>
</html>
HTML Text Formatting

 HTML <mark> Element


• ML <mark> element defines marked or highlighted text:

HTML Text Displayed in Browser


<!DOCTYPE html>
<html> HTML 
<body>

<h2>HTML
Formatting
<mark>Marked</mark>
Formatting</h2>

</body>
</html>
HTML Text Formatting

 HTML <sub> Element


• The HTML <sub> element defines subscripted text.

HTML Text Displayed in Browser


<!DOCTYPE html> This is subscripted text.
<html>
<body>

<p>This is
<sub>subscripted</sub> text.</p>

</body>
</html>
HTML Text Formatting

 HTML <sup> Element


• The HTML <sup> element defines superscripted text.

HTML Text Displayed in Browser


<!DOCTYPE html> This is superscripted text.
<html>
<body>

<p>This is
<sup>superscripted</sup>
text.</p>

</body>
</html>
HTML Comments – Quotes
--------------------------Abbreviations

56
HTML Comments

 Comment tags are used to insert comments in the HTML source


code.
 You can add comments to your HTML source by using the following
syntax:
<!-- Write your comments here -->
 Notice that there is an exclamation point (!) in the opening tag, but
not in the closing tag.
HTML Text Displayed in Browser
 With
<!--comments you-->
This is a comment can place
Thisnotifications
is a paragraph. and reminders in your
HTML:
<p>This is a paragraph.</p>
Note: Comments are
<!-- Comments are not
not displayed by the
displayed in the browser -->
browser, but they can
help document your
HTML source code.
HTML Quotes

 The HTML <q> element defines a short quotation.


 Browsers usually insert quotation marks around the <q> element.

HTML Text Displayed in Browser


<html> Browsers usually insert quotation marks around
<body> the q element.
<p>Browsers usually insert WWF's goal is to: “Build a future where people live
quotation marks around the q in harmony with nature”.
element.</p>
<p>WWF's goal is to: <q>Build
a future where people live in
harmony with nature.</q></p>
</body>
</html>
HTML Abbreviations

 The HTML <abbr> element defines an abbreviation or an acronym. When you hover the mouse on the
word in the browsing view you will see the details of the acronym.

HTML Text Displayed in Browser


<html> The WHO was founded in 1948.
<body> Marking up abbreviations can give useful
<p>The <abbr title="World information to browsers, translation systems and
Health search-engines
Organization">WHO</abbr>
was founded in 1948.</p>
<p>Marking up abbreviations
can give useful information to
browsers, translation systems
and search-engines.</p>
</body>
</html>
HTML Colors

60
HTML Colors
 In HTML, a color can be specified by using a color name, an RGB value, or
a HEX value.
 Color Names
HTML
• In HTML, a color can be specifiedText Displayed
by using inname:
a color Browser
<h2 style="background-color :red">
Background-color set by using red </h2>

<h2 style="background-color :orange">


Background-color set by using orange
</h2>

<h2 style="background-color :yellow">


Background-color set by using yellow </h2>

<h2 style="background-color :blue; color HTML supports 


:white">Background-color set by using blue
</h2> 140 standard color na
mes
<h2 style="background-color :cyan"> .
HTML Divisions

62
HTML Divisions
 The <div> tag in HTML is a tag that defines a section or division of a page
on which you can apply certain settings (styling or formatting) without
having to put that section in a paragraph or header form.
HTML Text Displayed in Browser
<!DOCTYPE html>
This is a paragraph
<html>
<body>
<h3>
This is a paragraph. </h3>
<div style="background-color: This is a part of the page with
black; color: white; padding :
20px;"> special setting
This is a part of the page with
special setting.
</div>
</body>
</html>
HTML Links

64
HTML Links
 HTML links are hyperlinks.
 Links are found in nearly all web pages. Note: A link does not
have to be text. It can
 Links allow users to click their way from page to page.
be an image or any
other HTML element.
 In HTML, links are defined with the <a> tag:
<a href="url">link text</a>
 “a” stands for Anchor and “href” stands for Hypertext Reference.
HTML Text Displayed in Browser
<!DOCTYPE html> Visit our HTML tutorial
<html>
<body>
<p> <a
href="http://www.w3schools.com/html/">Vi
sit our HTML tutorial</a> </p>
</body>
HTML Links
 Local Links
• The previous example used an absolute URL (A full web address).
• A local link (link to the same web site) is specified with a relative URL
(without http://www....).
HTML Text Displayed in Browser
<!DOCTYPE html> HTML Images is a link to a page on this
<html> website.
<body> W3C is a link to a website on the World
<p><a Wide Web.
href="html_images.asp">HTML
Images</a> is a link to a page on this
website.</p>

<p><a
href="http://www.w3.org/">W3C</a>
is a link to a website on the World
Wide Web.</p>
HTML Links
 HTML Links: Colors
• When you move the mouse over a link, two things will normally
happen:
• The mouse arrow will turn into a little hand.
• The color of the link element will change.

• By default, a link will appear like this (in all browsers):


• An unvisited link is underlined and blue.
• A visited link is underlined and purple.
• An active link is underlined and red.
HTML Links
 You can change the default colors, by using styles:
HTML
<style> a: active {
a: link { color: yellow;
color: green; background-color: transparent;
background-color: text-decoration: underline;
transparent; }
text-decoration: none; </style>
} <body>
a: visited {
color: pink; <p>You can change the default
background-color: colors of links</p>
transparent;
text-decoration: none; <a href="html_images.asp"
} target="_blank">HTML
a: hover { Images</a>
color: red;
background-color: </body>
transparent;
HTML Links
 HTML Links: The target Attribute
• The target attribute specifies where to open the linked document.
• The target attribute can have one of the following values:
• _blank (Opens the linked document in a new window or tab); _self – (Opens the linked
document in the same window/tab 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).
• This example will open the linked document in a new browser
window/tab:
HTML Text Displayed in Browser
<a href="http://www.w3schools.com/html/" Visit our HTML tutorial!
target="_blank">Visit our HTML tutorial! If you set the target attribute to "_blank",
</a> the link will open in a new browser window
or tab.
<p>If you set the target attribute to "_blank",
the link will open in a new browser window or
tab.</p>
HTML Links
 HTML Links: Image as Link
• It is common to use images as links:
HTML Text Displayed in Browser
<body> The image is a link. You can click on
it.
<p>The image is a link. You can click on it.</p>

<a href="https://en.wikipedia.org/wiki/Smiley"> We have added "border:0" to


<img src="smiley.gif" alt="HTML tutorial" prevent IE9 (and earlier) from
style="width: 42px;height: 42px;border: 0"> displaying a border around the
</a> image.

<p>We have added "border: 0" to prevent IE9 (and


earlier) from displaying a border around the
image.</p>

</body>
HTML Links
 Mailto Link
• It follows the same coding scheme as the hypertext link before.
• <a href="mailto:nahed.taha@feps.edu.eg">Click Here To Write Me</a>
• Notice it's the same format as a link except in a link you write "mailto:"
in place of the http:// and your e-mail address in place of the page
address
• NO SPACE between the colon and the e-mail
HTML address in Browser
Text Displayed
<address> Written by Nahed Taha.
Written by <a Visit us at:
href="mailto:nahed.taha@feps.edu.eg">Nahed feps.edu.eg
Taha</a>.<br> 35 Faisal, Giza
Visit us at:<br> Egypt
feps.edu.eg<br>
35 Faisal, Giza<br>
Egypt
</address>
HTML Links
 HTML Links: Create a Bookmark
• HTML bookmarks are used to allow readers to jump to specific parts of a Web page.
• Bookmarks can be useful if your webpage is very long.
• To make a bookmark, you must first create the bookmark, and then add a link to it.
• When the link is clicked, the page will scroll to the location with the bookmark.
First, create a bookmark with the id attribute:
<h2 id="tips">Useful Tips Section</h2>

Then, add a link to the bookmark ("Useful Tips Section"), from within the same page:
<a href="#tips">Visit the Useful Tips Section</a>

Or, add a link to the bookmark ("Useful Tips Section"), from another page:
<a href="html_tips.html#tips">Visit the Useful Tips Section</a>
HTML Links
HTML Text Displayed in Browser
<body>
Jump to Chapter 4
<p><a href="#C4">Jump to Chapter Chapter 1
4</a></p>
This chapter explains ba bla bla
<h2>Chapter 1</h2> Chapter 2
<p>This chapter explains ba bla bla</p>
This chapter explains ba bla bla
<h2>Chapter 2</h2> Chapter 3
<p>This chapter explains ba bla bla</p>
This chapter explains ba bla bla
<h2>Chapter 3</h2> Chapter 4
<p>This chapter explains ba bla bla</p>
This chapter explains ba bla bla
<h2 id="C4">Chapter 4</h2>
<p>This chapter explains ba bla bla</p>

</body>
HTML Images

74
HTML Images

JPG Images GIF Images PNG Images


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 specifies the URL (web address) of the image:
<img src="url" alt="some_text" style="width:
HTML width;inheight:
Text Displayed Browserheight;">
<!DOCTYPE html> Spectacular Mountain
<html>
<body>

<h2>Spectacular Mountain</h2>
<img src="pic_mountain.jpg" alt="Mountain
View" style="width: 304px;height: 228px;">

</body>
</html>
HTML Images
 The alt Attribute
• The alt attribute provides an alternate text for an image, if the user for
some reason cannot view it (because of slow connection, an error in the
src attribute, or if the user uses a screen reader).
• If a browser cannot find an image, it will display the value of the alt
attribute:
HTML Text Displayed in Browser

<p>If a browser cannot find an image, it will If a browser cannot find an


display the alternate text:</p> image, it will display the
alternate text: The alt attribute
<img src="wrongname.gif" alt="HTML5 Icon" is required. A
style="width:128px;height:128px;">
web page will
not validate
correctly
without it.
HTML Images
 Image Size: Width and Height
• You can use the style attribute to specify the width and height of an
image.
• The values
HTML
are specified in pixels (use px after the value):
Text Displayed in
Browser
<img src="html5.gif"
alt="HTML5 Icon" style="width:
128px; height: 128px;">

HTML
• Alternatively, Text Displayed in
you can use the width and height attributes. Here, the
Browser
values are specified in pixels by default:
<img src="html5.gif" alt="HTML5
Icon" width="128" height="128">
HTML Images
 Width and Height, or Style?
• Both the width, height, and style attributes are valid in HTML5.
• However, we suggest using the style attribute. It prevents internal or external
styles sheets from changing the original size of images:
HTML Text Displayed in Browser
<style> It is better to use the style attribute
img { (instead of the width and height
width: 100%; attributes), because it prevents
} internal or external styles sheets to
</style> change the original size of an image:
<body>

<p>It is better to use the style attribute (instead of the width and
height attributes), because it prevents
internal or external styles sheets to change the original size of an
image:</p>

<img src="html5.gif" alt="HTML5 Icon" style="width: 128px;


height: 128px;">
<img src="html5.gif" alt="HTML5 Icon" width= "128" height=
HTML Images
 Images in Another Folder
• If not specified, the browser expects to find the image in the same
folder as the web page.
• However, it is common to store images in a sub-folder. You must then
include the folder name in the src attribute:

HTML Text Displayed in Browser


<body>

<img
src="C:\Users\NahedTaha\Desktop\HTML\images/ht
ml5.gif" alt="HTML5 Icon" style="width:
128px;height: 128px;">

</body>
HTML Images
 Animated Images
• The GIF standard allows animated images:
HTML Text Displayed in Browser
<body> The GIF standard allows
moving images.
<p>The GIF standard allows moving
images.</p>

<img src="programming.gif" alt="Computer


man" style="width: 48px;height: 48px;">

</body>
Note that the syntax
of inserting animated
images is no
different from non-
animated images.
HTML Images
 Using an Image as a Link
• To use an image as a link, simply nest the <img> tag inside the <a> tag:
HTML Text Displayed in Browser
<p>The image is a link. You can click on The image is a link. You can
it.</p> click on it.

<a
href="https://en.wikipedia.org/wiki/Smiley"> Add "border:0;" to prevent IE9
<img src="smiley.gif" alt="HTML tutorial" (and earlier) from displaying a
style="width:42px;height:42px;border:0;"> border around the image.
</a>
Note that border:0; is
<p>Add "border:0;" to prevent IE9 (and added to prevent IE9
earlier) from displaying a border around the (and earlier) from
image.</p> displaying a border
around the image
(when the image is a
link).
HTML Lists

83
HTML Lists
 Unordered HTML List
• An unordered list starts with the <ul> tag. Each list item starts with the
<li> tag.
• The
HTMLlist items will be marked with bullets
Text Displayed (small black circles) by default:
in Browser
<!DOCTYPE html>
<html> An unordered HTML list
<body> • Coffee
<h2>An unordered HTML
• Tea
list</h2> • Milk

<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>

</body>
</html>
HTML Lists
 Ordered HTML List
• An ordered list starts with the <ol> tag. Each list item starts with the
<li> tag.
• The
HTMLlist items will be marked with numbers
Text Displayed by default:
in Browser
<!DOCTYPE html>
<html> An ordered HTML list
<body> 1. Coffee
<h2>An ordered HTML
2. Tea
list</h2> 3. Milk

<ol>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>

</body>
</html>
HTML Lists
 Ordered HTML List: The Type Attribute
• The type attribute of the <ol> tag, defines the type of the list item
marker:
Type Description
type="1" The list items will be numbered with numbers
(default)
type="A" The list items will be numbered with uppercase
letters
type="a" The list items will be numbered with lowercase
letters
type="I" The list items will be numbered with uppercase
roman numbers
type="i" The list items will be numbered with lowercase
roman numbers
HTML Lists
HTML Text Displayed in Browser
<!DOCTYPE html>
<html> Ordered List with Numbers
<body> 1. Coffee
<h2>Ordered List with
2. Tea
Numbers</h2> 3. Milk

<ol type="1">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>

</body>
</html>
HTML Lists
HTML Text Displayed in Browser
<!DOCTYPE html>
<html> Ordered List with Letters
<body> A. Coffee
<h2>Ordered List with
B. Tea
Letters</h2> C. Milk

<ol type="A">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>

</body>
</html>
HTML Lists
HTML Text Displayed in Browser
<!DOCTYPE html>
<html> Ordered List with Lowercase
<body> Letters
<h2>Ordered List with • Coffee
Lowercase Letters</h2> • Tea
o Black tea
<ol type="a"> o Green tea
<li>Coffee</li>
<li>Tea</li> • Milk
<li>Milk</li>
</ol>

</body>
</html>
HTML Lists
HTML Text Displayed in Browser
<!DOCTYPE html>
<html> Ordered List with Roman
<body> Numbers
<h2>Ordered List with Roman I. Coffee
Numbers</h2> II. Tea
III. Milk
<ol type="I">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>

</body>
</html>
HTML Lists
HTML Text Displayed in Browser
<!DOCTYPE html>
<html> Ordered List with Lowercase Roman
<body> Numbers
<h2>Ordered List with i. Coffee
Lowercase Roman ii. Tea
Numbers</h2> iii. Milk
<ol type="i">
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ol>

</body>
</html>
HTML Lists
 Nested HTML Lists
• List can be nested (lists inside lists):

HTML Text Displayed in Browser


<body>
A Nested List
<h2>A Nested List</h2> • Coffee
<ul>
• Tea
<li>Coffee</li>
o Black tea
<li>Tea o Green tea
<ul> • Milk
<li>Black tea</li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</ul>

</body>
HTML Tables

93
HTML Tables
 HTML Table
• An HTML table is defined with the <table> tag.
• Each table row is defined with the <tr> tag. A table header is defined
with the <th> tag. By default, table headings are bold and centered. A
table data/cell is defined with the <td> tag.
HTML Tables
<!DOCTYPE html> <tr>
<html> <td>Eve</td>
<body> <td>Jackson</td>
<td>94</td>
<table> </tr>
  <tr> <tr>
    <th>Firstname</th> <td>John</td>
    <th>Lastname</th> <td>Doe</td>
    <th>Age</th> <td>80</td> Note that the <td>
  </tr> </tr> elements are the data
<tr> </table> containers of the table.
<td>Jill</td> They can contain all sorts
<td>Smith</td> </body> of HTML elements; text,
<td>50</td> </html> images, lists, other
</tr>
tables, etc.
HTML Tables
 HTML Table: Adding a Border
<!DOCTYPE html> <tr>
<html> <td>Eve</td>
<body> <td>Jackson</td>
<td>94</td>
<table border="1"> </tr>
  <tr> <tr>
    <th>Firstname</th> <td>John</td>
    <th>Lastname</th> <td>Doe</td>
    <th>Age</th> <td>80</td>
  </tr> </tr>
<tr> </table>
<td>Jill</td>
<td>Smith</td> </body>
<td>50</td> </html>
</tr>
HTML Tables
<!DOCTYPE html> <tr>
<html> <td>Eve</td>
<body> <td>Jackson</td>
<td>94</td>
<table border="1" </tr>
style="width:100%"> <tr>
  <tr> <td>John</td>
    <th>Firstname</th> <td>Doe</td>
    <th>Lastname</th> <td>80</td>
    <th>Age</th> </tr>
  </tr> </table>
<tr>
<td>Jill</td> </body>
<td>Smith</td> </html>
<td>50</td>
</tr>
Thank You 

You might also like