SlideShare a Scribd company logo
Md. Ali Hosssain.
Web Designer.
Jr. Instructor, Graphic Arts Innstitute.
Email:Students.gai@gmail.com
Phone:01731402303
02/08/14
The World Wide Web (abbreviated as WWW or W3,[3] commonly known as the
web), is a system of interlinked hypertext documents accessed via the Internet.
With a web browser, one can view web pages that may contain text, images,
videos, and other multimedia, and navigate between them via hyperlinks.

•Born in London in
1955

•The
web
was
developed
between
March
1989
and
December 1990.
• Mr. Tim Berners-Lee

• Published language HyperText
Markup Language (HTML);
• The Hypertext Transfer
Protocol(HTTP)
02/08/14
Basic Website Requirements
1. Domain Name
The domain name is the address name you will have on the Internet such as
http://www.yourdomainname.com/ or yourdomainname.com.
2. Website Hosting
Hosting is the electronic "space" you rent so that your website and email are
accessible over the Internet.
3.Website Development
A website developer is the person that builds your website property at your hosting
provider. software developer who is specifically engaged in the development of
World Wide Web applications, that are run over the Internet from a web server to a
client, a web browser.
4. Webmaster
In terms of a completed small business site, the webmaster is the technical person
responsible for administration and maintenance of the website.
02/08/14
Web Application
Static
Static websites can only really be updated by someone with a knowledge of
website development.
Advantages of Static websites
• Quick to develop
• Cheap to develop
• Cheap to host
Dynamic
Dynamic applications on websites offer interactivity for you and your customers. Some
example are content management system, e-commerce system, bulletin / discussion
boards, intranet or extranet facilities, ability for clients or users to upload documents,
ability for administrators or users to create content or add information to a site.
Advantages of dynamic websites
•Much more functional website
•Much easier to update
•New content brings people back to the site and helps in the search engines
02/08/14
Defining A Web Site
The very first step in designing a Web site is to define it. And to properly
define a site there are three questions that must be answered.
What is the purpose of the site?
Who will be visiting the site?
How will the site serve the client?
The answers to these questions will guide you as you construct the site
Identify the Purpose of the Site
A Web site may have several purposes. In that case it is necessary to
determine which is the primary purpose, which is secondary, and so on. A
site that is intended to be strictly informative, such as a news site, is likely to
look much different that a site that is designed to sell a product. On the
other hand, a site for a college may have some subtle similarities to a site
that sells books. The college site probably will be intended to present the
school is a very positive and manner so that students will want to enroll.
The retail book site will want to convince visitors that it is the best place to
purchase reading material.

02/08/14
Identify Who Will Visit the Site
Determining who the visitors are likely to be is crucial in deciding not only the
general appearance of the site, but also the technology that might be used to build
the site.
If the project is likely to have visitors who log in from home, it is necessary to design
the pages with the understanding that some users may still have slow modem
connections.
Even with so-called "high speed access," Internet connect speeds vary wildly. Users
with DSL will almost certainly notice slower page loading compared to those users
who have cable or fiber optic access.
While quick download times are preferred, some types of Web sites require
technology that is not conducive to fast page loads. Such a site may be for a rock
band or a high-tech company. Both of which might use Flash! or similar techniques.
Serving the Needs of the Client
The term "client" in this instance refers to anybody for whom a site is built, not just a
paying customer. In the case of a Web site built for a family reunion, the client is the
family. Will the site properly serve the need of the family by providing clear
directions to the location of the reunion? Can the family photos be properly
displayed?
A client could be a history professor. In such an instance the message of the
professor must be clearly understood. Will he or she want to post assignments and
readings? Does the site involve explaining research projects? And who will update
the site later?
02/08/14
Technologies include.....
Platform
•
•
•
•
•
•
•

HTML
CSS
JavaScript
PHP
ASP
C Sharp
MySql

•
•
•
•
•
•
•

Software
Knowledge:
Dreamweaver
Flash
PhotoShop
Illustrator
FireWorks
Contribute
Acrobat

•
•
•
•
•
•

CMS
Joomla
WoardPress
Durpal
Majento
Cushy CMS
Radiant CMS

02/08/14
12 Benefits Of Having A Website
Some of the goals that can be achieved by launching a website include the
following:

1. Far Cheaper and Much More
Flexible Than Print Advertising
2. Market Expansion

7. Standardize Sales Performance
8. Improve credibility

3. Diversify Revenue Streams

9. Promote your Brick n Mortar
Presence

4. 24 7 365

10. Growth Opportunity

5. Offer Convenience

11. Two-Way Communicative Marketing

6. Add Value and Satisfaction

12. Cheap Market Research

02/08/14
Web Browser

02/08/14
What is HTML?

HTML is the "mother tongue" of web
browser.
•
•
•
•
•
•
•

HTML is a language for describing web pages.
HTML stands for Hyper Text Markup Language
HTML is a markup language
A markup language is a set of markup tags
The tags describe document content
HTML documents contain HTML tags and plain text
HTML documents are also called web pages

02/08/14
HTML Version /Elements and Tag

Year

Version
HTML

1991

HTML+

1993

HTML 2.0

1995

HTML 3.2

1997

HTML 4.01

1999

XHTML 1.0

2000

HTML5

2012

XHTML5

Elements and tags?
HTML markup tags are usually called HTML tags "HTML tags"
and "HTML elements" are often used to describe the same
thing.

2013

• HTML tags are keywords (tag names) surrounded by
angle brackets like <html>
• HTML tags normally come in pairs like <b> and </b>
• 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, with a forward
slash before the tag name
• Start and end tags are also called opening tags and
closing tags

<tagname>content</tagname>
02/08/14
The <!DOCTYPE> Declaration: The <!DOCTYPE> declaration helps the browser to display a
web page correctly. There are many different documents on the web, and a browser can only
display an HTML page 100% correctly if it knows the HTML type and version used.
Common Declarations
HTML 4.01: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
XHTML 1.0: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
HTML5: <!DOCTYPE html>

02/08/14
02/08/14
Create your first website
<HTML>
<HEAD>
<TITLE> My Web Site </TITLE>
</HEAD>
<BODY>
<H1> Hello World </H1>
<p>Hurrah! This is my website. My name is kamrul Hasan </p>
</BODY>
</HTML>

Save Your HTML: Select Save as.. in Notepad's file menu. You save an HTML file, you
can use either the .htm or the .html file extension. There is no difference, it is entirely up to
you.

02/08/14
BODY Element

<BODY attributename="attributevalue">
Deprecated attributes (but still used)
BACKGROUND=“Sunset.jpg” (can be tiled)
BGCOLOR=color
TEXT=color
LINK=color (unvisited links)
VLINK=color (visited links)
ALINK=color (when selected)

02/08/14
Headings
<H1 ...> text </H1> -- largest of the six
<H2 ...> text </H2>
<H3 ...> text </H3>
<H4 ...> text </H4>
<H5 ...> text </H5>
<H6 ...> text </H6> -- smallest of the six
ALIGN="position" --left (default), center or right
02/08/14
Headings
<HTML>
<HEAD>
<TITLE>Document Headings</TITLE>
</HEAD>
<BODY>
Samples of the six heading types:
<H1>Level-1 (H1)</H1>
<H2 ALIGN="center">Level-2 (H2)</H2>
<H3><U>Level-3 (H3)</U></H3>
<H4 ALIGN="right">Level-4 (H4)</H4>
<H5>Level-5 (H5)</H5>
<H6>Level-6 (H6)</H6>
</BODY>
</HTML>

02/08/14
<P> Paragraph

<P> defines a paragraph

Add ALIGN="position" (left, center, right)
Multiple <P>'s do not create blank lines
Use <BR> for blank line
Fully-specified text uses <P> and </P>
But </P> is optional

02/08/14
02/08/14

More Related Content

What's hot (20)

PPTX
WWW, Website & Webpage
Zeeshan Alam
 
PDF
Web Design & Development - Session 1
Shahrzad Peyman
 
PDF
Dynamic Web
Dave Wallace
 
PPT
How websites and search engines work
Brian Duffy
 
PPT
Essentials of Children's Ministry Website Development
childrensministry
 
DOCX
Web development
KAZEMBETVOnline
 
PPTX
Website Tactics
Diksha Sharma
 
PPT
Introduction to Web Programming - first course
Vlad Posea
 
PPT
Website Overview
ChanHan Hy
 
PPT
Lecture 1 intro to web designing
palhaftab
 
PPT
Blogging with-wordpress
Praveesh Palakeel
 
PDF
A practical guide to building websites with HTML5 & CSS3
Darren Wood
 
PPTX
website planning and creation for beginners
Shruti Goel
 
PPT
Mengelola isi halaman web 5 eng
Eko Supriyadi
 
PPTX
Ian cohen tech in law project
Ian Cohen
 
PDF
WEB I - 01 - Introduction to Web Development
Randy Connolly
 
PDF
Html, WordPress & evolving forms of publishing
crondeau
 
PDF
Web Development with HTML5, CSS3 & JavaScript
Edureka!
 
PPT
Protocols
Jason Smyth
 
KEY
Web Design 101
T.S. Lim
 
WWW, Website & Webpage
Zeeshan Alam
 
Web Design & Development - Session 1
Shahrzad Peyman
 
Dynamic Web
Dave Wallace
 
How websites and search engines work
Brian Duffy
 
Essentials of Children's Ministry Website Development
childrensministry
 
Web development
KAZEMBETVOnline
 
Website Tactics
Diksha Sharma
 
Introduction to Web Programming - first course
Vlad Posea
 
Website Overview
ChanHan Hy
 
Lecture 1 intro to web designing
palhaftab
 
Blogging with-wordpress
Praveesh Palakeel
 
A practical guide to building websites with HTML5 & CSS3
Darren Wood
 
website planning and creation for beginners
Shruti Goel
 
Mengelola isi halaman web 5 eng
Eko Supriyadi
 
Ian cohen tech in law project
Ian Cohen
 
WEB I - 01 - Introduction to Web Development
Randy Connolly
 
Html, WordPress & evolving forms of publishing
crondeau
 
Web Development with HTML5, CSS3 & JavaScript
Edureka!
 
Protocols
Jason Smyth
 
Web Design 101
T.S. Lim
 

Viewers also liked (20)

PPTX
Facebook для бизнеса
Alexey Kolb
 
PDF
Locally Owned Renewable Energy Facilities
Gardening
 
PDF
Field Bindweed Control Alternatives
Gardening
 
PDF
Managed Grazing in Riparian Areas
Gardening
 
PDF
Selling to Restaurants
Gardening
 
PDF
Grapes: Organic Production
Gardening
 
PDF
Pork: Marketing Alternatives
Gardening
 
PDF
Edible Schoolyards & Gardening with Children
Gardening
 
PDF
Tools for Managing Internal Parasites in Small Ruminants
Gardening
 
PDF
B c f section for last pages
Saeed Ahmed Soomro
 
PPSX
L'uomo che dovevo uccidere
stefman75
 
PPT
Искромётное сердце поэта
metodist4560
 
PDF
Montana Farmers Market EBT Manual
Gardening
 
PDF
Tree Fruits: Organic Production Overview
Gardening
 
PDF
sequential circuit that encodes a hexadecimal 16-key keypad output to 4 – bit...
Gautham Reddy
 
PDF
Raising Dairy Heifers on Pasture
Gardening
 
PDF
Biodiesel: The Sustainability Dimensions
Gardening
 
PDF
Edible Soybean Production and Marketing
Gardening
 
PDF
Moving Beyond Conventional Cash Cropping
Gardening
 
PDF
Predator Control for Sustainable & Organic Livestock Production
Gardening
 
Facebook для бизнеса
Alexey Kolb
 
Locally Owned Renewable Energy Facilities
Gardening
 
Field Bindweed Control Alternatives
Gardening
 
Managed Grazing in Riparian Areas
Gardening
 
Selling to Restaurants
Gardening
 
Grapes: Organic Production
Gardening
 
Pork: Marketing Alternatives
Gardening
 
Edible Schoolyards & Gardening with Children
Gardening
 
Tools for Managing Internal Parasites in Small Ruminants
Gardening
 
B c f section for last pages
Saeed Ahmed Soomro
 
L'uomo che dovevo uccidere
stefman75
 
Искромётное сердце поэта
metodist4560
 
Montana Farmers Market EBT Manual
Gardening
 
Tree Fruits: Organic Production Overview
Gardening
 
sequential circuit that encodes a hexadecimal 16-key keypad output to 4 – bit...
Gautham Reddy
 
Raising Dairy Heifers on Pasture
Gardening
 
Biodiesel: The Sustainability Dimensions
Gardening
 
Edible Soybean Production and Marketing
Gardening
 
Moving Beyond Conventional Cash Cropping
Gardening
 
Predator Control for Sustainable & Organic Livestock Production
Gardening
 
Ad

Similar to Html class-01 (20)

PDF
Wt unit 1 ppts web development process
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
PDF
Unit 01 (1).pdf
sayalishivarkar1
 
PPTX
WEB TECHNOLOGY:Web Essentials and Markup Language HTML
smitawagh14
 
PPT
Introduction web tech
Liaquat Rahoo
 
PPTX
Website
KULDEEPSING PATIL
 
PPTX
Introduction to website design
Anas Khaitou
 
PPT
Web technology today
Dr. Ramkumar Lakshminarayanan
 
PDF
The more information Website Design_New.pdf
ssuser088e5b
 
PPTX
Website Planning & Designing By Er. Kapil Bhargava
Kapil Bhargava
 
PPTX
Web Application Programming with HTML 5 part 2
RovellAsidera1
 
PPTX
CSC PPT 3.pptx
DrRavneetSingh
 
PDF
Lesson 8 Building a Website - Computer Pt.pdf
NovelJrPSabonsolin
 
PPTX
Website creation Module Topic in Digital Marketing Syllabus
Manish Kumar Singh
 
PDF
USE HTML AND CSS TO DESIGN AND DEVELOP A WEBSITE.pdf
A.K.M. Tanzir Ahmed
 
PPTX
Web Concepts_Introduction to Website Planning
clement swarnappa
 
PPTX
Web Designing Training in Ambala ! BATRA COMPUTER CENTRE
jatin batra
 
PPTX
Lecture 7 The-Internet-and-Web-Development.pptx
akatsesena2003
 
PPT
Introduction to web_design_cs_final_ason
K S RANGASAMY COLLEGE OF ARTS AND SCIENCE
 
Wt unit 1 ppts web development process
PUNE VIDYARTHI GRIHA'S COLLEGE OF ENGINEERING, NASHIK
 
Unit 01 (1).pdf
sayalishivarkar1
 
WEB TECHNOLOGY:Web Essentials and Markup Language HTML
smitawagh14
 
Introduction web tech
Liaquat Rahoo
 
Introduction to website design
Anas Khaitou
 
Web technology today
Dr. Ramkumar Lakshminarayanan
 
The more information Website Design_New.pdf
ssuser088e5b
 
Website Planning & Designing By Er. Kapil Bhargava
Kapil Bhargava
 
Web Application Programming with HTML 5 part 2
RovellAsidera1
 
CSC PPT 3.pptx
DrRavneetSingh
 
Lesson 8 Building a Website - Computer Pt.pdf
NovelJrPSabonsolin
 
Website creation Module Topic in Digital Marketing Syllabus
Manish Kumar Singh
 
USE HTML AND CSS TO DESIGN AND DEVELOP A WEBSITE.pdf
A.K.M. Tanzir Ahmed
 
Web Concepts_Introduction to Website Planning
clement swarnappa
 
Web Designing Training in Ambala ! BATRA COMPUTER CENTRE
jatin batra
 
Lecture 7 The-Internet-and-Web-Development.pptx
akatsesena2003
 
Introduction to web_design_cs_final_ason
K S RANGASAMY COLLEGE OF ARTS AND SCIENCE
 
Ad

More from Md Ali Hossain (20)

PPTX
Job environment (for new employee)
Md Ali Hossain
 
PPTX
Web offset presses
Md Ali Hossain
 
PPT
Modern printing technologies
Md Ali Hossain
 
PPT
Screen printing
Md Ali Hossain
 
PPTX
Color
Md Ali Hossain
 
PPTX
Flexography
Md Ali Hossain
 
PPTX
Offset printing platon press
Md Ali Hossain
 
PPS
Flexographic printing 1(9551)
Md Ali Hossain
 
DOC
Press mentainense(9553)
Md Ali Hossain
 
PPS
Flexographic printing 1(9551)
Md Ali Hossain
 
PPS
Special printing
Md Ali Hossain
 
PDF
Web authoring design-basics
Md Ali Hossain
 
PDF
Site designer
Md Ali Hossain
 
PDF
Webdesign
Md Ali Hossain
 
PPT
Httml flash
Md Ali Hossain
 
PPT
Html class-07
Md Ali Hossain
 
PPT
Html class-04
Md Ali Hossain
 
PPT
Html class-02
Md Ali Hossain
 
PPT
Css class-01
Md Ali Hossain
 
Job environment (for new employee)
Md Ali Hossain
 
Web offset presses
Md Ali Hossain
 
Modern printing technologies
Md Ali Hossain
 
Screen printing
Md Ali Hossain
 
Flexography
Md Ali Hossain
 
Offset printing platon press
Md Ali Hossain
 
Flexographic printing 1(9551)
Md Ali Hossain
 
Press mentainense(9553)
Md Ali Hossain
 
Flexographic printing 1(9551)
Md Ali Hossain
 
Special printing
Md Ali Hossain
 
Web authoring design-basics
Md Ali Hossain
 
Site designer
Md Ali Hossain
 
Webdesign
Md Ali Hossain
 
Httml flash
Md Ali Hossain
 
Html class-07
Md Ali Hossain
 
Html class-04
Md Ali Hossain
 
Html class-02
Md Ali Hossain
 
Css class-01
Md Ali Hossain
 

Recently uploaded (20)

PDF
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
PDF
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
PDF
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
PDF
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
PDF
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
PDF
July Patch Tuesday
Ivanti
 
PDF
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
PPTX
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
PDF
Blockchain Transactions Explained For Everyone
CIFDAQ
 
PDF
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
PDF
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
PDF
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
PDF
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
PDF
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
PDF
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
PDF
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
PDF
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
PDF
Windsurf Meetup Ottawa 2025-07-12 - Planning Mode at Reliza.pdf
Pavel Shukhman
 
PPTX
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
PDF
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 
Chris Elwell Woburn, MA - Passionate About IT Innovation
Chris Elwell Woburn, MA
 
LLMs.txt: Easily Control How AI Crawls Your Site
Keploy
 
"Beyond English: Navigating the Challenges of Building a Ukrainian-language R...
Fwdays
 
Presentation - Vibe Coding The Future of Tech
yanuarsinggih1
 
NewMind AI - Journal 100 Insights After The 100th Issue
NewMind AI
 
July Patch Tuesday
Ivanti
 
Using FME to Develop Self-Service CAD Applications for a Major UK Police Force
Safe Software
 
Building Search Using OpenSearch: Limitations and Workarounds
Sease
 
Blockchain Transactions Explained For Everyone
CIFDAQ
 
Exolore The Essential AI Tools in 2025.pdf
Srinivasan M
 
Jak MŚP w Europie Środkowo-Wschodniej odnajdują się w świecie AI
dominikamizerska1
 
Empower Inclusion Through Accessible Java Applications
Ana-Maria Mihalceanu
 
New from BookNet Canada for 2025: BNC BiblioShare - Tech Forum 2025
BookNet Canada
 
Bitcoin for Millennials podcast with Bram, Power Laws of Bitcoin
Stephen Perrenod
 
[Newgen] NewgenONE Marvin Brochure 1.pdf
darshakparmar
 
HCIP-Data Center Facility Deployment V2.0 Training Material (Without Remarks ...
mcastillo49
 
How Startups Are Growing Faster with App Developers in Australia.pdf
India App Developer
 
Windsurf Meetup Ottawa 2025-07-12 - Planning Mode at Reliza.pdf
Pavel Shukhman
 
Top iOS App Development Company in the USA for Innovative Apps
SynapseIndia
 
Building Real-Time Digital Twins with IBM Maximo & ArcGIS Indoors
Safe Software
 

Html class-01

  • 1. Md. Ali Hosssain. Web Designer. Jr. Instructor, Graphic Arts Innstitute. Email:[email protected] Phone:01731402303 02/08/14
  • 2. The World Wide Web (abbreviated as WWW or W3,[3] commonly known as the web), is a system of interlinked hypertext documents accessed via the Internet. With a web browser, one can view web pages that may contain text, images, videos, and other multimedia, and navigate between them via hyperlinks. •Born in London in 1955 •The web was developed between March 1989 and December 1990. • Mr. Tim Berners-Lee • Published language HyperText Markup Language (HTML); • The Hypertext Transfer Protocol(HTTP) 02/08/14
  • 3. Basic Website Requirements 1. Domain Name The domain name is the address name you will have on the Internet such as http://www.yourdomainname.com/ or yourdomainname.com. 2. Website Hosting Hosting is the electronic "space" you rent so that your website and email are accessible over the Internet. 3.Website Development A website developer is the person that builds your website property at your hosting provider. software developer who is specifically engaged in the development of World Wide Web applications, that are run over the Internet from a web server to a client, a web browser. 4. Webmaster In terms of a completed small business site, the webmaster is the technical person responsible for administration and maintenance of the website. 02/08/14
  • 4. Web Application Static Static websites can only really be updated by someone with a knowledge of website development. Advantages of Static websites • Quick to develop • Cheap to develop • Cheap to host Dynamic Dynamic applications on websites offer interactivity for you and your customers. Some example are content management system, e-commerce system, bulletin / discussion boards, intranet or extranet facilities, ability for clients or users to upload documents, ability for administrators or users to create content or add information to a site. Advantages of dynamic websites •Much more functional website •Much easier to update •New content brings people back to the site and helps in the search engines 02/08/14
  • 5. Defining A Web Site The very first step in designing a Web site is to define it. And to properly define a site there are three questions that must be answered. What is the purpose of the site? Who will be visiting the site? How will the site serve the client? The answers to these questions will guide you as you construct the site Identify the Purpose of the Site A Web site may have several purposes. In that case it is necessary to determine which is the primary purpose, which is secondary, and so on. A site that is intended to be strictly informative, such as a news site, is likely to look much different that a site that is designed to sell a product. On the other hand, a site for a college may have some subtle similarities to a site that sells books. The college site probably will be intended to present the school is a very positive and manner so that students will want to enroll. The retail book site will want to convince visitors that it is the best place to purchase reading material. 02/08/14
  • 6. Identify Who Will Visit the Site Determining who the visitors are likely to be is crucial in deciding not only the general appearance of the site, but also the technology that might be used to build the site. If the project is likely to have visitors who log in from home, it is necessary to design the pages with the understanding that some users may still have slow modem connections. Even with so-called "high speed access," Internet connect speeds vary wildly. Users with DSL will almost certainly notice slower page loading compared to those users who have cable or fiber optic access. While quick download times are preferred, some types of Web sites require technology that is not conducive to fast page loads. Such a site may be for a rock band or a high-tech company. Both of which might use Flash! or similar techniques. Serving the Needs of the Client The term "client" in this instance refers to anybody for whom a site is built, not just a paying customer. In the case of a Web site built for a family reunion, the client is the family. Will the site properly serve the need of the family by providing clear directions to the location of the reunion? Can the family photos be properly displayed? A client could be a history professor. In such an instance the message of the professor must be clearly understood. Will he or she want to post assignments and readings? Does the site involve explaining research projects? And who will update the site later? 02/08/14
  • 8. 12 Benefits Of Having A Website Some of the goals that can be achieved by launching a website include the following: 1. Far Cheaper and Much More Flexible Than Print Advertising 2. Market Expansion 7. Standardize Sales Performance 8. Improve credibility 3. Diversify Revenue Streams 9. Promote your Brick n Mortar Presence 4. 24 7 365 10. Growth Opportunity 5. Offer Convenience 11. Two-Way Communicative Marketing 6. Add Value and Satisfaction 12. Cheap Market Research 02/08/14
  • 10. What is HTML? HTML is the "mother tongue" of web browser. • • • • • • • HTML is a language for describing web pages. HTML stands for Hyper Text Markup Language HTML is a markup language A markup language is a set of markup tags The tags describe document content HTML documents contain HTML tags and plain text HTML documents are also called web pages 02/08/14
  • 11. HTML Version /Elements and Tag Year Version HTML 1991 HTML+ 1993 HTML 2.0 1995 HTML 3.2 1997 HTML 4.01 1999 XHTML 1.0 2000 HTML5 2012 XHTML5 Elements and tags? HTML markup tags are usually called HTML tags "HTML tags" and "HTML elements" are often used to describe the same thing. 2013 • HTML tags are keywords (tag names) surrounded by angle brackets like <html> • HTML tags normally come in pairs like <b> and </b> • 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, with a forward slash before the tag name • Start and end tags are also called opening tags and closing tags <tagname>content</tagname> 02/08/14
  • 12. The <!DOCTYPE> Declaration: The <!DOCTYPE> declaration helps the browser to display a web page correctly. There are many different documents on the web, and a browser can only display an HTML page 100% correctly if it knows the HTML type and version used. Common Declarations HTML 4.01: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> XHTML 1.0: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> HTML5: <!DOCTYPE html> 02/08/14
  • 14. Create your first website <HTML> <HEAD> <TITLE> My Web Site </TITLE> </HEAD> <BODY> <H1> Hello World </H1> <p>Hurrah! This is my website. My name is kamrul Hasan </p> </BODY> </HTML> Save Your HTML: Select Save as.. in Notepad's file menu. You save an HTML file, you can use either the .htm or the .html file extension. There is no difference, it is entirely up to you. 02/08/14
  • 15. BODY Element <BODY attributename="attributevalue"> Deprecated attributes (but still used) BACKGROUND=“Sunset.jpg” (can be tiled) BGCOLOR=color TEXT=color LINK=color (unvisited links) VLINK=color (visited links) ALINK=color (when selected) 02/08/14
  • 16. Headings <H1 ...> text </H1> -- largest of the six <H2 ...> text </H2> <H3 ...> text </H3> <H4 ...> text </H4> <H5 ...> text </H5> <H6 ...> text </H6> -- smallest of the six ALIGN="position" --left (default), center or right 02/08/14
  • 17. Headings <HTML> <HEAD> <TITLE>Document Headings</TITLE> </HEAD> <BODY> Samples of the six heading types: <H1>Level-1 (H1)</H1> <H2 ALIGN="center">Level-2 (H2)</H2> <H3><U>Level-3 (H3)</U></H3> <H4 ALIGN="right">Level-4 (H4)</H4> <H5>Level-5 (H5)</H5> <H6>Level-6 (H6)</H6> </BODY> </HTML> 02/08/14
  • 18. <P> Paragraph <P> defines a paragraph Add ALIGN="position" (left, center, right) Multiple <P>'s do not create blank lines Use <BR> for blank line Fully-specified text uses <P> and </P> But </P> is optional 02/08/14

Editor's Notes

  • #3: lized the concept could be implemented throughout the world. The World Wide Web Consortium (W3C) is the main international standards organization for the World Wide Web (abbreviated WWW or W3). Founded and ... In March 1989, Tim Berners-Lee wrote a proposal that referenced ENQUIRE, a database and software project he had built in 1980, and described a more elaborate information management system.[12] The Hypertext Transfer Protocol (HTTP) is an application protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation of data ...
  • #4: Basic Website Requirements There are four basic requirements for getting and keeping your business up and running on the Internet. You will need a domain name, website hosting, website development and a webmaster. 1. Domain Name 2. Website Hosting 3. Website Development A website developer is the person that builds your website property at your hosting provider so it is available on the Internet. He or she is a software developer who is specifically engaged in the development of World Wide Web applications, or applications that are run over the Internet from a web server to a client, a web browser. We define web development as the entire process from website design through implementation. 4. Webmaster In terms of a completed small business site, the webmaster is the technical person responsible for administration and maintenance of the website. You can perform this duty yourself or hire a professional. Depending on the scope of work, your webmaster might be responsible for any or all of the following: coordination and renewal of domain name and hosting services