SlideShare ist ein Scribd-Unternehmen logo
1 von 58
XP
1
New Perspectives on Creating Web Pages
with HTML
Tutorial 1: Developing a Basic Web Page
XP
2
Tutorial Objectives
• Explore the structure of the World Wide Web
• Learn the basic principles of Web documents
• Create a HTML document
• View an HTML file using a Web browser
• Use HTML tags for text, headings, paragraphs,
and lists
• Insert character tags into an HTML document
XP
3
Tutorial Objectives Continued
• Insert an inline graphic image into a HTML
document
• Add special characters to an HTML document
• Insert horizontal lines into an HTML document
XP
4
Introducing the World Wide Web
• In order for computers to share resources
efficiently, they can be linked together in one of
the following structured networks:
– linked within a local area network (LAN)
– linked across a wide area network (WAN)
• Networks are very useful, their use led to a
“network of networks” called the Internet.
XP
5
The Internet
• The Internet consists of millions of interconnected
computers that enable users to communicate and
share information.
• Many Internet tools required users to master an
array of terms, acronyms, and commands before
they could navigate the Internet.
• The World Wide Web was developed to make the
Internet easier to use and give quick access to
users.
XP
6
Structure of the Internet
This figure shows the physical structure of the Internet, which uses fiber-optic cables,
satellites, phone lines, and other telecommunications media to send data back and forth.
XP
7
The Development of the
World Wide Web
• In 1989, Timothy Berners-Lee and other
researchers at the CERN nuclear research facility,
laid the foundation of the World Wide Web, or the
Web.
– created an information system that would make it easy
for researchers to locate and share data
– required minimal training and support
– developed a system of hypertext documents, electronic
files that contain element that you can easily select
XP
8
Hypertext Documents
• Hypertext offers a better way of locating
information.
• When you read a book, you follow a linear
progression, reading one page after another.
• With hypertext, you progress through pages in
whatever way is best suited to you and your
objectives.
• Hypertext lets you skip from one topic to another.
XP
9
Linear Versus Hypertext Documents
This figure shows how topics can be related in a hypertext fashion,
as opposed to a linear fashion.
XP
10
Hypertext Documents Continued
• The key to hypertext is the use of links, which you
activate to move from one topic to another.
– a link can open a document on a computer anywhere in
the world
• Hypertext has become the dominate method of
sharing and retrieving information on the Internet,
becoming known as the World Wide Web, or the
Web.
• Documents on the Web are known as Web pages.
XP
11
Web Pages and Web Browsers
• A Web page is stored on a Web server, which
makes the page available to users of the Web.
• To view a Web page, the user runs a Web
browser, a software program that retrieves the
page and displays it.
• A Web browser can either be text-based, or
graphical.
XP
12
Using a Browser to View a Web
Document on a Server
This figure shows to view web pages, the user runs a Web browser,
a software program that retrieves the page and displays it.
XP
13
Internet Explorer and Netscape
• The most common Web browsers available today
are:
– Microsoft Internet Explorer
– Netscape Navigator
XP
14
Web Page with Interesting Fonts,
Graphics, and Layout
This figure shows a Web page is
not only a source of information,
it can also be a work of art.
links
graphic image
The Web designer has a great
deal of control over the format of
the page.
interesting fonts
XP
15
HTML: The Language of the Web
• Web pages are text files, written in a language
called Hypertext Markup Language or HTML.
• A markup language is a language used to describe
the contact and format of documents.
• HTML was developed from the Standard
Generalized Markup Language (SGML), a
language used for large-scale documents.
• SGML proved to be cumbersome and difficult,
thus HTML was created.
XP
16
Hypertext Markup Language
(HTML)
• HTML allows Web authors to create documents that
can be displayed across different operating systems.
• HTML code is easy to use, that even
nonprogrammers can learn to use it.
• HTML describes the format of Web pages through
the use of tags.
– it’s the job of the Web browser to interpret these tags and
render the text accordingly
XP
17
Versions of HTML
This figure presents a history of the various versions of HTML that have been
released by the World Wide Web Consortium (W3C).
XP
18
Hypertext Markup
Language (HTML) Continued
• HTML has a set of rules, called syntax.
– syntax are a set of standards or specifications developed
by a consortium of Web developers, programmers, and
authors called the World Wide Web Consortium (WC3)
• HTML extensions have been added to support new
features, which have been adopted in subsequent sets
of standards released by the W3C.
– these extensions have provided Web page authors with
more options
XP
19
Web Development
• Web designers need to determine which browsers
and browser versions support their web pages.
• In the future, Web development is focusing more
on XML (Extensible Markup Language) and
XHTML (Extensible HyperText Markup
Language) for developing document content.
– XML combined with style sheets provides the same
functionality as HTML, but with greater flexibility
– XHTML was designed to overcome some of the
problems with competing HTML standards
XP
20
Tools for Creating HTML Documents
• HTML documents are text files, which a text editor
such as Windows NotePad can be used to create.
• You can also use an HTML converter or an HTML
editor.
– an HTML converter like Microsoft Word takes text
in one format and converts it to HTML code
– an HTML editor helps you create an HTML file by
inserting HTML codes for you as you work
XP
21
Creating an HTML Document
heading 1
image
horizontal line
paragraph
list
bold and italic
text
heading 3
It’s always a
good idea to
plan the
appearance of
your Web page
before you start
writing code.
XP
22
HTML Syntax
• Document content is what the users sees on the
page, such as headings and images.
• Tags are the HTML codes that control the
appearance of the document content.
– tag is the name of the HTML tag
– attributes are properties of the tag
– document content is actual content that appears in the
Web page
XP
23
HTML Tags
• Tags can be one-sided or two-sided.
– two-sided tags contain an opening tag <b> that tells the
browser to turn on a feature and apply it to the contact
that follows, and a closing tag </b> that turns off the
feature
– one-sided tags are used to insert noncharacter data into
the Web page, such as a graphic image or video clip
<tag attribute>
• Tags are not case sensitive. The current standard
is to display all tags in lowercase letters.
XP
24
Interpretation of the <H1> tag by
Different Browsers
This figure shows how three different browsers might interpret a line of HTML code.
XP
25
Initial HTML Tags in Notepad
Your text editor may not display the file extension
in the title bar. This is okay.
<title> tag contains
the Web page title
Page content will
go between the
<body> tags
<head> tag
contains
information about
the Web page
<html> tag
indicates that
this file is
written in
HTML
XP
26
The Initial HTML File in
Internet Explorer
the title you
entered between
the <title>
tags
address box
indicates the
name and
location of the
HTML file
page content will
appear here
You should occasionally
view the formatted page
with different Web
browsers to check
compatibility, verify
that there are no syntax
errors, or other
problems.
XP
27
Creating Heading Tags
• HTML supports six levels of headings, numbered
<h1> through <h6>, with <h1> being the
largest and most prominent.
• Headings are always displayed in a bold font.
XP
28
Six Heading Levels
This figure
illustrates the
general
appearance of the
six heading styles.
Your browser
might use slightly
different fonts and
sizes.
XP
29
Entering Heading Tags and Text
heading tags
As of HTML 3.2, the heading tag can
contain additional attributes, one of
which is the alignment attribute.
XP
30
Headings As They Appear
in the Browser
<h1>
<h2>
<h3>
XP
31
Entering Paragraph Text
If you are using a test editor
like NotePad, the text might
not wrap to the next line
automatically.
Selecting the Word Wrap
command within NotePad will
allow you to see all the text on
your screen.
XP
32
Paragraph Text in the Browser
XP
33
Adding Paragraphs
adding
paragraphs
XP
34
The Paragraphs Displayed
by the Browser
four grading
paragraphs
are not
separated
Remember:
HTML formats
text only through
the use of tags
and ignores such
things as extra
blank spaces,
blank lines, or
tabs.
XP
35
The Grading Text Separated
into Paragraphs
text is now
separated
into four
paragraphs
To add space
between
paragraphs,
you use the
paragraph tag
<p>.
XP
36
Creating Lists
• HTML supports three kinds of lists:
– an ordered list, which is used to display information in
a numeric order
– an unordered list, which list items are not listed in a
particular order i.e. bullets
– a definition list, which is a list of terms, each followed
by a definition line that is typically indented slightly to
the right
XP
37
Entering an Unordered List
<ul> unordered
list tag
<li> list
item tag
XP
38
The Unordered List in the Browser
unordered
list
An unordered
list is a bulleted
list.
XP
39
Creating Character Tags
• HTML also lets you format individual characters.
• A tag that you apply to an individual character is
called a character tag. There are two types of
character tags:
– logical character tag
– physical character tag
XP
40
Common Logical Character Tags
This figure lists some common logical character tags.
XP
41
Common Physical Character Tags
This figure shows examples of how these tags can be displayed in a browser.
XP
42
Logical Character Tags as They
Appear in the Browser
examples of
individual
tags
example of
combined
tags
XP
43
Physical Character Tags as They
Appear in the Browser
Underline text
can sometimes be
confused with
hyperlinked text
(which is usually
underlined), and
for that reason,
use of the <u> tag
is discouraged.
XP
44
Applying Character Tags
Italic <i> </i>
and bold
<b> </b>
character tags
If you support
users with older
browsers, you
should use a logical
tag. Otherwise, use
physical tags,
which are more
common and easier
to interpret.
XP
45
The Effect of the Character Tags
in the Browser
text
formatted
with bold
and italic
XP
46
Inserting a Graphic
• Images can be displayed in two ways: as inline
images or as external images.
– an inline image displays directly on the Web page and
is displayed when the page is accessed by a user
– an inline image can be placed on a separate line in your
HTML code, or it can be placed directly within a line
of text
– inline images should be in one of two file formats: GIF
(Graphics Interchange Format) or JPEG (Joint
Photographic Experts Group)
XP
47
Inserting a Graphic Continued
– an external image is not displayed with the Web page,
the browser must have a file viewer, which is a separate
program that the browser launches when it encounters
an external image file
– external images are represented by an icon that a user
clicks to view the image
– external images are not limited to GIF or JPEG formats
XP
48
Inserting a Graphic
Image file
dube.jpg
use the <p>
tag so you
can center
the image
XP
49
The Image File as it Appears
in the Browser
XP
50
Special Characters
• Occasionally you will want to include entities or
special characters in your Web page that do not
appear on your keyboard. For example:
– registered trademark symbol ®
– copyright symbol ©
• HTML supports the use of character symbols that
are identified by a code number or name.
XP
51
Special Characters and Codes
This figure shows some HTML symbols and the corresponding code numbers or names.
XP
52
Special Characters in the Browser
accented é added
to last name
This figure shows an example of the code “Welcome to Mr. Dub&#233’s
Web site”, which accented the é in his last name..
XP
53
Inserting Horizontal Lines
• A horizontal line can improve the appearance of a
Web page.
• The syntax for creating a horizontal line is:
<hr align=“align” size=“size”
width=“width” color=“color” noshade>
XP
54
Inserting Horizontal Lines
• The HTML horizontal syntax includes the following:
– align specifies the horizontal alignment of the line on
the page (center, left, or right)
– size specifies the height of the line in pixels or
percentage of the screen width
– width indicates the width of the line in pixels or
percentage of the screen width
– color indicates the color of the line
– noshade specifies that the browser display a solid line
XP
55
Different Line Styles
size=12
width-100%
size=6
width-50%
size=3
width-25%
size=1
width-10% You can use line
styles to improve the
appearance of your
Web page.
<hr align=“center” size=“12” width=“100%”>
<hr align=“center” size=“6” width=“50%”>
<hr align=“center” size=“3” width=“25%”>
<hr align=“center” size=“1” width=“10%”>
XP
56
Horizontal Line Added to the Page
horizontal line
XP
57
Tutorial 1 Summary
• Learned about the history and structure of the
World Wide Web.
• Introduced the basic principles of Web documents
and about the HTML language.
• Learned how to create a Web page using basic
layout tags.
• Learned how to create paragraphs, headings and
lists (both ordered and unordered).
XP
58
Tutorial 1 Summary Continued
• Worked with character tags and special characters.
• Introduced to working with graphics by creating a
horizontal line and an inline graphic image.
• If any kind of information please click here….
• https://goo.gl/pfP7LS

Weitere ähnliche Inhalte

Was ist angesagt? (20)

Web technology Unit-II Part-C
Web technology Unit-II Part-CWeb technology Unit-II Part-C
Web technology Unit-II Part-C
 
HTML & JAVA Script
HTML & JAVA ScriptHTML & JAVA Script
HTML & JAVA Script
 
Web Technology Fundamentals
Web Technology FundamentalsWeb Technology Fundamentals
Web Technology Fundamentals
 
Html
HtmlHtml
Html
 
Html5
Html5Html5
Html5
 
Web programming by Najeeb ullahAzad(1)
Web programming by Najeeb ullahAzad(1)Web programming by Najeeb ullahAzad(1)
Web programming by Najeeb ullahAzad(1)
 
Dhtml
DhtmlDhtml
Dhtml
 
How browsers work landscape
How browsers work landscapeHow browsers work landscape
How browsers work landscape
 
Php
PhpPhp
Php
 
What is html xml and xhtml
What is html xml and xhtmlWhat is html xml and xhtml
What is html xml and xhtml
 
Html book2
Html book2Html book2
Html book2
 
Ncp computer appls web tech asish
Ncp computer appls  web tech asishNcp computer appls  web tech asish
Ncp computer appls web tech asish
 
Hour 01
Hour 01Hour 01
Hour 01
 
Web technology today
Web technology todayWeb technology today
Web technology today
 
What is mmd - Multi Markdown ?
What is mmd - Multi Markdown ?What is mmd - Multi Markdown ?
What is mmd - Multi Markdown ?
 
Vskills certified html designer Notes
Vskills certified html designer NotesVskills certified html designer Notes
Vskills certified html designer Notes
 
Web technology unit I - Part B
Web technology unit I - Part BWeb technology unit I - Part B
Web technology unit I - Part B
 
Itc lab 03
Itc lab  03Itc lab  03
Itc lab 03
 
Html tag
Html tagHtml tag
Html tag
 
Xhtml
XhtmlXhtml
Xhtml
 

Andere mochten auch

How Far Will Consumers Travel to Make Routine Purchases?
How Far Will Consumers Travel to Make Routine Purchases?How Far Will Consumers Travel to Make Routine Purchases?
How Far Will Consumers Travel to Make Routine Purchases?Access Development
 
Ancient civilizations reflection
Ancient civilizations reflectionAncient civilizations reflection
Ancient civilizations reflectiongrade4biss
 
How to make a tornado in a bottle
How to make a tornado in a bottleHow to make a tornado in a bottle
How to make a tornado in a bottlegrade4biss
 
Bit strips
Bit stripsBit strips
Bit stripssrizvi30
 
Trabajo de biología
Trabajo de biologíaTrabajo de biología
Trabajo de biologíaFausto
 
Contrato para acceder al servicio internet
Contrato para acceder al servicio internetContrato para acceder al servicio internet
Contrato para acceder al servicio internetBraNditoh Mazz Nhaa
 
Like and win the ‘bl intro competition’
Like and win the ‘bl intro competition’Like and win the ‘bl intro competition’
Like and win the ‘bl intro competition’arubajunaid
 
краткая презентация адаптированной программы
краткая презентация адаптированной программыкраткая презентация адаптированной программы
краткая презентация адаптированной программыds52chel
 
Eltern lehrer - schulerfolg
Eltern   lehrer - schulerfolgEltern   lehrer - schulerfolg
Eltern lehrer - schulerfolgLukas Brand
 
Teoria del presupuesto. presentacion graficas
Teoria del presupuesto. presentacion graficasTeoria del presupuesto. presentacion graficas
Teoria del presupuesto. presentacion graficasanyerlys
 
Ficha Informativa - Esquema da Célula
Ficha Informativa - Esquema da CélulaFicha Informativa - Esquema da Célula
Ficha Informativa - Esquema da CélulaIsaura Mourão
 
YP-P2 Samsung Handbuch
YP-P2 Samsung HandbuchYP-P2 Samsung Handbuch
YP-P2 Samsung Handbuchmarco678
 

Andere mochten auch (18)

Definitiva
DefinitivaDefinitiva
Definitiva
 
How Far Will Consumers Travel to Make Routine Purchases?
How Far Will Consumers Travel to Make Routine Purchases?How Far Will Consumers Travel to Make Routine Purchases?
How Far Will Consumers Travel to Make Routine Purchases?
 
Ancient civilizations reflection
Ancient civilizations reflectionAncient civilizations reflection
Ancient civilizations reflection
 
How to make a tornado in a bottle
How to make a tornado in a bottleHow to make a tornado in a bottle
How to make a tornado in a bottle
 
Bit strips
Bit stripsBit strips
Bit strips
 
Rushabh Precision Certificate
Rushabh Precision CertificateRushabh Precision Certificate
Rushabh Precision Certificate
 
Victor e Vinicius
Victor e ViniciusVictor e Vinicius
Victor e Vinicius
 
Bandera nacional
Bandera nacionalBandera nacional
Bandera nacional
 
Trabajo de biología
Trabajo de biologíaTrabajo de biología
Trabajo de biología
 
Contrato para acceder al servicio internet
Contrato para acceder al servicio internetContrato para acceder al servicio internet
Contrato para acceder al servicio internet
 
Like and win the ‘bl intro competition’
Like and win the ‘bl intro competition’Like and win the ‘bl intro competition’
Like and win the ‘bl intro competition’
 
краткая презентация адаптированной программы
краткая презентация адаптированной программыкраткая презентация адаптированной программы
краткая презентация адаптированной программы
 
Requerimiento de materiales ç, omar
Requerimiento de materiales ç, omarRequerimiento de materiales ç, omar
Requerimiento de materiales ç, omar
 
Kti elvi akbid paramata raha 2015
Kti elvi akbid paramata raha 2015Kti elvi akbid paramata raha 2015
Kti elvi akbid paramata raha 2015
 
Eltern lehrer - schulerfolg
Eltern   lehrer - schulerfolgEltern   lehrer - schulerfolg
Eltern lehrer - schulerfolg
 
Teoria del presupuesto. presentacion graficas
Teoria del presupuesto. presentacion graficasTeoria del presupuesto. presentacion graficas
Teoria del presupuesto. presentacion graficas
 
Ficha Informativa - Esquema da Célula
Ficha Informativa - Esquema da CélulaFicha Informativa - Esquema da Célula
Ficha Informativa - Esquema da Célula
 
YP-P2 Samsung Handbuch
YP-P2 Samsung HandbuchYP-P2 Samsung Handbuch
YP-P2 Samsung Handbuch
 

Ähnlich wie Web Design

Chapter 1 Getting Started with HTML5
Chapter 1 Getting Started with HTML5Chapter 1 Getting Started with HTML5
Chapter 1 Getting Started with HTML5Dr. Ahmed Al Zaidy
 
02 From HTML tags to XHTML
02 From HTML tags to XHTML02 From HTML tags to XHTML
02 From HTML tags to XHTMLRich Dron
 
Unit 5 application layer
Unit 5 application layerUnit 5 application layer
Unit 5 application layerKritika Purohit
 
Using HTML to Create Web Pages
Using HTML to Create Web PagesUsing HTML to Create Web Pages
Using HTML to Create Web PagesBravocash
 
9781285852645_CH01 research and analysis of data.pptx
9781285852645_CH01 research and analysis of data.pptx9781285852645_CH01 research and analysis of data.pptx
9781285852645_CH01 research and analysis of data.pptxclement swarnappa
 
Webdesigningandpublishingcomputerstudiestheorylesson 101212054612-phpapp02
Webdesigningandpublishingcomputerstudiestheorylesson 101212054612-phpapp02Webdesigningandpublishingcomputerstudiestheorylesson 101212054612-phpapp02
Webdesigningandpublishingcomputerstudiestheorylesson 101212054612-phpapp02Harshith Rockx
 
Fundamental Internet Programming.pdf
Fundamental Internet Programming.pdfFundamental Internet Programming.pdf
Fundamental Internet Programming.pdfAshenafi Workie
 
Science kjadnckj ljnadjc lk cnldj cj nlzkdncaj
Science kjadnckj ljnadjc lk cnldj cj nlzkdncajScience kjadnckj ljnadjc lk cnldj cj nlzkdncaj
Science kjadnckj ljnadjc lk cnldj cj nlzkdncajkefije9797
 
WD 2 Less Gooooooooooofwfweujb iefieniwenfwefuhw
WD 2 Less Gooooooooooofwfweujb iefieniwenfwefuhwWD 2 Less Gooooooooooofwfweujb iefieniwenfwefuhw
WD 2 Less Gooooooooooofwfweujb iefieniwenfwefuhwkefije9797
 
HTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTMLHTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTMLGrayzon Gonzales, LPT
 
WEB TECHNOLOGY:Web Essentials and Markup Language HTML
WEB TECHNOLOGY:Web Essentials and Markup Language HTMLWEB TECHNOLOGY:Web Essentials and Markup Language HTML
WEB TECHNOLOGY:Web Essentials and Markup Language HTMLsmitawagh14
 
Web Concepts - an introduction - introduction
Web Concepts - an introduction - introductionWeb Concepts - an introduction - introduction
Web Concepts - an introduction - introductionclement swarnappa
 
Fii Practic Frontend BeeNear - laborator 1
Fii Practic Frontend BeeNear - laborator 1Fii Practic Frontend BeeNear - laborator 1
Fii Practic Frontend BeeNear - laborator 1BeeNear
 
Full Stack Development Course in Gurgaon
Full Stack Development Course in GurgaonFull Stack Development Course in Gurgaon
Full Stack Development Course in Gurgaondigitallynikitasharm
 

Ähnlich wie Web Design (20)

Html
HtmlHtml
Html
 
Chapter 1 Getting Started with HTML5
Chapter 1 Getting Started with HTML5Chapter 1 Getting Started with HTML5
Chapter 1 Getting Started with HTML5
 
02 From HTML tags to XHTML
02 From HTML tags to XHTML02 From HTML tags to XHTML
02 From HTML tags to XHTML
 
Unit 5 application layer
Unit 5 application layerUnit 5 application layer
Unit 5 application layer
 
Using HTML to Create Web Pages
Using HTML to Create Web PagesUsing HTML to Create Web Pages
Using HTML to Create Web Pages
 
9781285852645_CH01 research and analysis of data.pptx
9781285852645_CH01 research and analysis of data.pptx9781285852645_CH01 research and analysis of data.pptx
9781285852645_CH01 research and analysis of data.pptx
 
9 10 july2020
9 10 july20209 10 july2020
9 10 july2020
 
Html5
Html5 Html5
Html5
 
Webdesigningandpublishingcomputerstudiestheorylesson 101212054612-phpapp02
Webdesigningandpublishingcomputerstudiestheorylesson 101212054612-phpapp02Webdesigningandpublishingcomputerstudiestheorylesson 101212054612-phpapp02
Webdesigningandpublishingcomputerstudiestheorylesson 101212054612-phpapp02
 
Fundamental Internet Programming.pdf
Fundamental Internet Programming.pdfFundamental Internet Programming.pdf
Fundamental Internet Programming.pdf
 
Module 3
Module 3Module 3
Module 3
 
Unit 01 (1).pdf
Unit 01 (1).pdfUnit 01 (1).pdf
Unit 01 (1).pdf
 
Science kjadnckj ljnadjc lk cnldj cj nlzkdncaj
Science kjadnckj ljnadjc lk cnldj cj nlzkdncajScience kjadnckj ljnadjc lk cnldj cj nlzkdncaj
Science kjadnckj ljnadjc lk cnldj cj nlzkdncaj
 
WD 2 Less Gooooooooooofwfweujb iefieniwenfwefuhw
WD 2 Less Gooooooooooofwfweujb iefieniwenfwefuhwWD 2 Less Gooooooooooofwfweujb iefieniwenfwefuhw
WD 2 Less Gooooooooooofwfweujb iefieniwenfwefuhw
 
Module 5 and 6
Module 5 and 6Module 5 and 6
Module 5 and 6
 
HTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTMLHTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTML
 
WEB TECHNOLOGY:Web Essentials and Markup Language HTML
WEB TECHNOLOGY:Web Essentials and Markup Language HTMLWEB TECHNOLOGY:Web Essentials and Markup Language HTML
WEB TECHNOLOGY:Web Essentials and Markup Language HTML
 
Web Concepts - an introduction - introduction
Web Concepts - an introduction - introductionWeb Concepts - an introduction - introduction
Web Concepts - an introduction - introduction
 
Fii Practic Frontend BeeNear - laborator 1
Fii Practic Frontend BeeNear - laborator 1Fii Practic Frontend BeeNear - laborator 1
Fii Practic Frontend BeeNear - laborator 1
 
Full Stack Development Course in Gurgaon
Full Stack Development Course in GurgaonFull Stack Development Course in Gurgaon
Full Stack Development Course in Gurgaon
 

Kürzlich hochgeladen

VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130Suhani Kapoor
 
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiVIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiSuhani Kapoor
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxjanettecruzeiro1
 
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)amitlee9823
 
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130  Available With RoomVIP Kolkata Call Girl Gariahat 👉 8250192130  Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Roomdivyansh0kumar0
 
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130Suhani Kapoor
 
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Delhi Call girls
 
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130Suhani Kapoor
 
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service BhiwandiVIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service BhiwandiSuhani Kapoor
 
SCRIP Lua HTTP PROGRACMACION PLC WECON CA
SCRIP Lua HTTP PROGRACMACION PLC  WECON CASCRIP Lua HTTP PROGRACMACION PLC  WECON CA
SCRIP Lua HTTP PROGRACMACION PLC WECON CANestorGamez6
 
Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...
Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...
Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...nagunakhan
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...kumaririma588
 
Petrosains Drama Competition (PSDC).pptx
Petrosains Drama Competition (PSDC).pptxPetrosains Drama Competition (PSDC).pptx
Petrosains Drama Competition (PSDC).pptxIgnatiusAbrahamBalin
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation decktbatkhuu1
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Call Girls in Nagpur High Profile
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...Call Girls in Nagpur High Profile
 
Stark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxStark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxjeswinjees
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵anilsa9823
 

Kürzlich hochgeladen (20)

VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
VIP Call Girls Service Bhagyanagar Hyderabad Call +91-8250192130
 
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service AmravatiVIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
VIP Call Girl Amravati Aashi 8250192130 Independent Escort Service Amravati
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptx
 
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
Escorts Service Basapura ☎ 7737669865☎ Book Your One night Stand (Bangalore)
 
escort service sasti (*~Call Girls in Prasad Nagar Metro❤️9953056974
escort service sasti (*~Call Girls in Prasad Nagar Metro❤️9953056974escort service sasti (*~Call Girls in Prasad Nagar Metro❤️9953056974
escort service sasti (*~Call Girls in Prasad Nagar Metro❤️9953056974
 
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130  Available With RoomVIP Kolkata Call Girl Gariahat 👉 8250192130  Available With Room
VIP Kolkata Call Girl Gariahat 👉 8250192130 Available With Room
 
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
VIP Call Girls Service Mehdipatnam Hyderabad Call +91-8250192130
 
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
Best VIP Call Girls Noida Sector 47 Call Me: 8448380779
 
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
VIP Call Girls Service Kukatpally Hyderabad Call +91-8250192130
 
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service BhiwandiVIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
VIP Call Girls Bhiwandi Ananya 8250192130 Independent Escort Service Bhiwandi
 
SCRIP Lua HTTP PROGRACMACION PLC WECON CA
SCRIP Lua HTTP PROGRACMACION PLC  WECON CASCRIP Lua HTTP PROGRACMACION PLC  WECON CA
SCRIP Lua HTTP PROGRACMACION PLC WECON CA
 
Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...
Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...
Nepali Escort Girl Gomti Nagar \ 9548273370 Indian Call Girls Service Lucknow...
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
 
Petrosains Drama Competition (PSDC).pptx
Petrosains Drama Competition (PSDC).pptxPetrosains Drama Competition (PSDC).pptx
Petrosains Drama Competition (PSDC).pptx
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
 
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...Top Rated  Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
Top Rated Pune Call Girls Saswad ⟟ 6297143586 ⟟ Call Me For Genuine Sex Serv...
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
 
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance VVIP 🍎 SER...
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance  VVIP 🍎 SER...Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance  VVIP 🍎 SER...
Call Girls Service Mukherjee Nagar @9999965857 Delhi 🫦 No Advance VVIP 🍎 SER...
 
Stark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptxStark Industries Marketing Plan (1).pptx
Stark Industries Marketing Plan (1).pptx
 
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service  🧵
CALL ON ➥8923113531 🔝Call Girls Kalyanpur Lucknow best Female service 🧵
 

Web Design

  • 1. XP 1 New Perspectives on Creating Web Pages with HTML Tutorial 1: Developing a Basic Web Page
  • 2. XP 2 Tutorial Objectives • Explore the structure of the World Wide Web • Learn the basic principles of Web documents • Create a HTML document • View an HTML file using a Web browser • Use HTML tags for text, headings, paragraphs, and lists • Insert character tags into an HTML document
  • 3. XP 3 Tutorial Objectives Continued • Insert an inline graphic image into a HTML document • Add special characters to an HTML document • Insert horizontal lines into an HTML document
  • 4. XP 4 Introducing the World Wide Web • In order for computers to share resources efficiently, they can be linked together in one of the following structured networks: – linked within a local area network (LAN) – linked across a wide area network (WAN) • Networks are very useful, their use led to a “network of networks” called the Internet.
  • 5. XP 5 The Internet • The Internet consists of millions of interconnected computers that enable users to communicate and share information. • Many Internet tools required users to master an array of terms, acronyms, and commands before they could navigate the Internet. • The World Wide Web was developed to make the Internet easier to use and give quick access to users.
  • 6. XP 6 Structure of the Internet This figure shows the physical structure of the Internet, which uses fiber-optic cables, satellites, phone lines, and other telecommunications media to send data back and forth.
  • 7. XP 7 The Development of the World Wide Web • In 1989, Timothy Berners-Lee and other researchers at the CERN nuclear research facility, laid the foundation of the World Wide Web, or the Web. – created an information system that would make it easy for researchers to locate and share data – required minimal training and support – developed a system of hypertext documents, electronic files that contain element that you can easily select
  • 8. XP 8 Hypertext Documents • Hypertext offers a better way of locating information. • When you read a book, you follow a linear progression, reading one page after another. • With hypertext, you progress through pages in whatever way is best suited to you and your objectives. • Hypertext lets you skip from one topic to another.
  • 9. XP 9 Linear Versus Hypertext Documents This figure shows how topics can be related in a hypertext fashion, as opposed to a linear fashion.
  • 10. XP 10 Hypertext Documents Continued • The key to hypertext is the use of links, which you activate to move from one topic to another. – a link can open a document on a computer anywhere in the world • Hypertext has become the dominate method of sharing and retrieving information on the Internet, becoming known as the World Wide Web, or the Web. • Documents on the Web are known as Web pages.
  • 11. XP 11 Web Pages and Web Browsers • A Web page is stored on a Web server, which makes the page available to users of the Web. • To view a Web page, the user runs a Web browser, a software program that retrieves the page and displays it. • A Web browser can either be text-based, or graphical.
  • 12. XP 12 Using a Browser to View a Web Document on a Server This figure shows to view web pages, the user runs a Web browser, a software program that retrieves the page and displays it.
  • 13. XP 13 Internet Explorer and Netscape • The most common Web browsers available today are: – Microsoft Internet Explorer – Netscape Navigator
  • 14. XP 14 Web Page with Interesting Fonts, Graphics, and Layout This figure shows a Web page is not only a source of information, it can also be a work of art. links graphic image The Web designer has a great deal of control over the format of the page. interesting fonts
  • 15. XP 15 HTML: The Language of the Web • Web pages are text files, written in a language called Hypertext Markup Language or HTML. • A markup language is a language used to describe the contact and format of documents. • HTML was developed from the Standard Generalized Markup Language (SGML), a language used for large-scale documents. • SGML proved to be cumbersome and difficult, thus HTML was created.
  • 16. XP 16 Hypertext Markup Language (HTML) • HTML allows Web authors to create documents that can be displayed across different operating systems. • HTML code is easy to use, that even nonprogrammers can learn to use it. • HTML describes the format of Web pages through the use of tags. – it’s the job of the Web browser to interpret these tags and render the text accordingly
  • 17. XP 17 Versions of HTML This figure presents a history of the various versions of HTML that have been released by the World Wide Web Consortium (W3C).
  • 18. XP 18 Hypertext Markup Language (HTML) Continued • HTML has a set of rules, called syntax. – syntax are a set of standards or specifications developed by a consortium of Web developers, programmers, and authors called the World Wide Web Consortium (WC3) • HTML extensions have been added to support new features, which have been adopted in subsequent sets of standards released by the W3C. – these extensions have provided Web page authors with more options
  • 19. XP 19 Web Development • Web designers need to determine which browsers and browser versions support their web pages. • In the future, Web development is focusing more on XML (Extensible Markup Language) and XHTML (Extensible HyperText Markup Language) for developing document content. – XML combined with style sheets provides the same functionality as HTML, but with greater flexibility – XHTML was designed to overcome some of the problems with competing HTML standards
  • 20. XP 20 Tools for Creating HTML Documents • HTML documents are text files, which a text editor such as Windows NotePad can be used to create. • You can also use an HTML converter or an HTML editor. – an HTML converter like Microsoft Word takes text in one format and converts it to HTML code – an HTML editor helps you create an HTML file by inserting HTML codes for you as you work
  • 21. XP 21 Creating an HTML Document heading 1 image horizontal line paragraph list bold and italic text heading 3 It’s always a good idea to plan the appearance of your Web page before you start writing code.
  • 22. XP 22 HTML Syntax • Document content is what the users sees on the page, such as headings and images. • Tags are the HTML codes that control the appearance of the document content. – tag is the name of the HTML tag – attributes are properties of the tag – document content is actual content that appears in the Web page
  • 23. XP 23 HTML Tags • Tags can be one-sided or two-sided. – two-sided tags contain an opening tag <b> that tells the browser to turn on a feature and apply it to the contact that follows, and a closing tag </b> that turns off the feature – one-sided tags are used to insert noncharacter data into the Web page, such as a graphic image or video clip <tag attribute> • Tags are not case sensitive. The current standard is to display all tags in lowercase letters.
  • 24. XP 24 Interpretation of the <H1> tag by Different Browsers This figure shows how three different browsers might interpret a line of HTML code.
  • 25. XP 25 Initial HTML Tags in Notepad Your text editor may not display the file extension in the title bar. This is okay. <title> tag contains the Web page title Page content will go between the <body> tags <head> tag contains information about the Web page <html> tag indicates that this file is written in HTML
  • 26. XP 26 The Initial HTML File in Internet Explorer the title you entered between the <title> tags address box indicates the name and location of the HTML file page content will appear here You should occasionally view the formatted page with different Web browsers to check compatibility, verify that there are no syntax errors, or other problems.
  • 27. XP 27 Creating Heading Tags • HTML supports six levels of headings, numbered <h1> through <h6>, with <h1> being the largest and most prominent. • Headings are always displayed in a bold font.
  • 28. XP 28 Six Heading Levels This figure illustrates the general appearance of the six heading styles. Your browser might use slightly different fonts and sizes.
  • 29. XP 29 Entering Heading Tags and Text heading tags As of HTML 3.2, the heading tag can contain additional attributes, one of which is the alignment attribute.
  • 30. XP 30 Headings As They Appear in the Browser <h1> <h2> <h3>
  • 31. XP 31 Entering Paragraph Text If you are using a test editor like NotePad, the text might not wrap to the next line automatically. Selecting the Word Wrap command within NotePad will allow you to see all the text on your screen.
  • 32. XP 32 Paragraph Text in the Browser
  • 34. XP 34 The Paragraphs Displayed by the Browser four grading paragraphs are not separated Remember: HTML formats text only through the use of tags and ignores such things as extra blank spaces, blank lines, or tabs.
  • 35. XP 35 The Grading Text Separated into Paragraphs text is now separated into four paragraphs To add space between paragraphs, you use the paragraph tag <p>.
  • 36. XP 36 Creating Lists • HTML supports three kinds of lists: – an ordered list, which is used to display information in a numeric order – an unordered list, which list items are not listed in a particular order i.e. bullets – a definition list, which is a list of terms, each followed by a definition line that is typically indented slightly to the right
  • 37. XP 37 Entering an Unordered List <ul> unordered list tag <li> list item tag
  • 38. XP 38 The Unordered List in the Browser unordered list An unordered list is a bulleted list.
  • 39. XP 39 Creating Character Tags • HTML also lets you format individual characters. • A tag that you apply to an individual character is called a character tag. There are two types of character tags: – logical character tag – physical character tag
  • 40. XP 40 Common Logical Character Tags This figure lists some common logical character tags.
  • 41. XP 41 Common Physical Character Tags This figure shows examples of how these tags can be displayed in a browser.
  • 42. XP 42 Logical Character Tags as They Appear in the Browser examples of individual tags example of combined tags
  • 43. XP 43 Physical Character Tags as They Appear in the Browser Underline text can sometimes be confused with hyperlinked text (which is usually underlined), and for that reason, use of the <u> tag is discouraged.
  • 44. XP 44 Applying Character Tags Italic <i> </i> and bold <b> </b> character tags If you support users with older browsers, you should use a logical tag. Otherwise, use physical tags, which are more common and easier to interpret.
  • 45. XP 45 The Effect of the Character Tags in the Browser text formatted with bold and italic
  • 46. XP 46 Inserting a Graphic • Images can be displayed in two ways: as inline images or as external images. – an inline image displays directly on the Web page and is displayed when the page is accessed by a user – an inline image can be placed on a separate line in your HTML code, or it can be placed directly within a line of text – inline images should be in one of two file formats: GIF (Graphics Interchange Format) or JPEG (Joint Photographic Experts Group)
  • 47. XP 47 Inserting a Graphic Continued – an external image is not displayed with the Web page, the browser must have a file viewer, which is a separate program that the browser launches when it encounters an external image file – external images are represented by an icon that a user clicks to view the image – external images are not limited to GIF or JPEG formats
  • 48. XP 48 Inserting a Graphic Image file dube.jpg use the <p> tag so you can center the image
  • 49. XP 49 The Image File as it Appears in the Browser
  • 50. XP 50 Special Characters • Occasionally you will want to include entities or special characters in your Web page that do not appear on your keyboard. For example: – registered trademark symbol ® – copyright symbol © • HTML supports the use of character symbols that are identified by a code number or name.
  • 51. XP 51 Special Characters and Codes This figure shows some HTML symbols and the corresponding code numbers or names.
  • 52. XP 52 Special Characters in the Browser accented é added to last name This figure shows an example of the code “Welcome to Mr. Dub&#233’s Web site”, which accented the é in his last name..
  • 53. XP 53 Inserting Horizontal Lines • A horizontal line can improve the appearance of a Web page. • The syntax for creating a horizontal line is: <hr align=“align” size=“size” width=“width” color=“color” noshade>
  • 54. XP 54 Inserting Horizontal Lines • The HTML horizontal syntax includes the following: – align specifies the horizontal alignment of the line on the page (center, left, or right) – size specifies the height of the line in pixels or percentage of the screen width – width indicates the width of the line in pixels or percentage of the screen width – color indicates the color of the line – noshade specifies that the browser display a solid line
  • 55. XP 55 Different Line Styles size=12 width-100% size=6 width-50% size=3 width-25% size=1 width-10% You can use line styles to improve the appearance of your Web page. <hr align=“center” size=“12” width=“100%”> <hr align=“center” size=“6” width=“50%”> <hr align=“center” size=“3” width=“25%”> <hr align=“center” size=“1” width=“10%”>
  • 56. XP 56 Horizontal Line Added to the Page horizontal line
  • 57. XP 57 Tutorial 1 Summary • Learned about the history and structure of the World Wide Web. • Introduced the basic principles of Web documents and about the HTML language. • Learned how to create a Web page using basic layout tags. • Learned how to create paragraphs, headings and lists (both ordered and unordered).
  • 58. XP 58 Tutorial 1 Summary Continued • Worked with character tags and special characters. • Introduced to working with graphics by creating a horizontal line and an inline graphic image. • If any kind of information please click here…. • https://goo.gl/pfP7LS