SlideShare uma empresa Scribd logo
1 de 19
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

Mais conteúdo relacionado

Mais procurados

WWW, Website & Webpage
WWW, Website & WebpageWWW, Website & Webpage
WWW, Website & WebpageZeeshan Alam
 
Web Design & Development - Session 1
Web Design & Development - Session 1Web Design & Development - Session 1
Web Design & Development - Session 1Shahrzad Peyman
 
How websites and search engines work
How websites and search engines workHow websites and search engines work
How websites and search engines workBrian Duffy
 
Essentials of Children's Ministry Website Development
Essentials of Children's Ministry Website DevelopmentEssentials of Children's Ministry Website Development
Essentials of Children's Ministry Website Developmentchildrensministry
 
Introduction to Web Programming - first course
Introduction to Web Programming - first courseIntroduction to Web Programming - first course
Introduction to Web Programming - first courseVlad Posea
 
Website Overview
Website OverviewWebsite Overview
Website OverviewChanHan Hy
 
Lecture 1 intro to web designing
Lecture 1  intro to web designingLecture 1  intro to web designing
Lecture 1 intro to web designingpalhaftab
 
A practical guide to building websites with HTML5 & CSS3
A practical guide to building websites with HTML5 & CSS3A practical guide to building websites with HTML5 & CSS3
A practical guide to building websites with HTML5 & CSS3Darren Wood
 
website planning and creation for beginners
website planning and creation for beginners website planning and creation for beginners
website planning and creation for beginners Shruti Goel
 
Mengelola isi halaman web 5 eng
Mengelola isi halaman web 5 engMengelola isi halaman web 5 eng
Mengelola isi halaman web 5 engEko Supriyadi
 
Ian cohen tech in law project
Ian cohen tech in law projectIan cohen tech in law project
Ian cohen tech in law projectIan Cohen
 
WEB I - 01 - Introduction to Web Development
WEB I - 01 - Introduction to Web DevelopmentWEB I - 01 - Introduction to Web Development
WEB I - 01 - Introduction to Web DevelopmentRandy Connolly
 
Html, WordPress & evolving forms of publishing
Html, WordPress & evolving forms of publishingHtml, WordPress & evolving forms of publishing
Html, WordPress & evolving forms of publishingcrondeau
 
Web Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScriptWeb Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScriptEdureka!
 
Web Design 101
Web Design 101Web Design 101
Web Design 101T.S. Lim
 

Mais procurados (20)

WWW, Website & Webpage
WWW, Website & WebpageWWW, Website & Webpage
WWW, Website & Webpage
 
Web Design & Development - Session 1
Web Design & Development - Session 1Web Design & Development - Session 1
Web Design & Development - Session 1
 
Dynamic Web
Dynamic WebDynamic Web
Dynamic Web
 
How websites and search engines work
How websites and search engines workHow websites and search engines work
How websites and search engines work
 
Essentials of Children's Ministry Website Development
Essentials of Children's Ministry Website DevelopmentEssentials of Children's Ministry Website Development
Essentials of Children's Ministry Website Development
 
Web development
Web developmentWeb development
Web development
 
Website Tactics
Website Tactics Website Tactics
Website Tactics
 
Introduction to Web Programming - first course
Introduction to Web Programming - first courseIntroduction to Web Programming - first course
Introduction to Web Programming - first course
 
Website Overview
Website OverviewWebsite Overview
Website Overview
 
Lecture 1 intro to web designing
Lecture 1  intro to web designingLecture 1  intro to web designing
Lecture 1 intro to web designing
 
Blogging with-wordpress
Blogging with-wordpressBlogging with-wordpress
Blogging with-wordpress
 
A practical guide to building websites with HTML5 & CSS3
A practical guide to building websites with HTML5 & CSS3A practical guide to building websites with HTML5 & CSS3
A practical guide to building websites with HTML5 & CSS3
 
website planning and creation for beginners
website planning and creation for beginners website planning and creation for beginners
website planning and creation for beginners
 
Mengelola isi halaman web 5 eng
Mengelola isi halaman web 5 engMengelola isi halaman web 5 eng
Mengelola isi halaman web 5 eng
 
Ian cohen tech in law project
Ian cohen tech in law projectIan cohen tech in law project
Ian cohen tech in law project
 
WEB I - 01 - Introduction to Web Development
WEB I - 01 - Introduction to Web DevelopmentWEB I - 01 - Introduction to Web Development
WEB I - 01 - Introduction to Web Development
 
Html, WordPress & evolving forms of publishing
Html, WordPress & evolving forms of publishingHtml, WordPress & evolving forms of publishing
Html, WordPress & evolving forms of publishing
 
Web Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScriptWeb Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScript
 
Protocols
ProtocolsProtocols
Protocols
 
Web Design 101
Web Design 101Web Design 101
Web Design 101
 

Destaque

Facebook для бизнеса
Facebook для бизнесаFacebook для бизнеса
Facebook для бизнесаAlexey Kolb
 
Locally Owned Renewable Energy Facilities
Locally Owned Renewable Energy FacilitiesLocally Owned Renewable Energy Facilities
Locally Owned Renewable Energy FacilitiesGardening
 
Field Bindweed Control Alternatives
Field Bindweed Control AlternativesField Bindweed Control Alternatives
Field Bindweed Control AlternativesGardening
 
Managed Grazing in Riparian Areas
Managed Grazing in Riparian AreasManaged Grazing in Riparian Areas
Managed Grazing in Riparian AreasGardening
 
Selling to Restaurants
Selling to RestaurantsSelling to Restaurants
Selling to RestaurantsGardening
 
Grapes: Organic Production
Grapes: Organic ProductionGrapes: Organic Production
Grapes: Organic ProductionGardening
 
Pork: Marketing Alternatives
Pork: Marketing AlternativesPork: Marketing Alternatives
Pork: Marketing AlternativesGardening
 
Edible Schoolyards & Gardening with Children
Edible Schoolyards & Gardening with ChildrenEdible Schoolyards & Gardening with Children
Edible Schoolyards & Gardening with ChildrenGardening
 
Tools for Managing Internal Parasites in Small Ruminants
Tools for Managing Internal Parasites in Small RuminantsTools for Managing Internal Parasites in Small Ruminants
Tools for Managing Internal Parasites in Small RuminantsGardening
 
L'uomo che dovevo uccidere
L'uomo che dovevo uccidereL'uomo che dovevo uccidere
L'uomo che dovevo ucciderestefman75
 
Искромётное сердце поэта
Искромётное сердце поэтаИскромётное сердце поэта
Искромётное сердце поэтаmetodist4560
 
Montana Farmers Market EBT Manual
Montana Farmers Market EBT ManualMontana Farmers Market EBT Manual
Montana Farmers Market EBT ManualGardening
 
Tree Fruits: Organic Production Overview
Tree Fruits: Organic Production OverviewTree Fruits: Organic Production Overview
Tree Fruits: Organic Production OverviewGardening
 
sequential circuit that encodes a hexadecimal 16-key keypad output to 4 – bit...
sequential circuit that encodes a hexadecimal 16-key keypad output to 4 – bit...sequential circuit that encodes a hexadecimal 16-key keypad output to 4 – bit...
sequential circuit that encodes a hexadecimal 16-key keypad output to 4 – bit...Gautham Reddy
 
Raising Dairy Heifers on Pasture
Raising Dairy Heifers on PastureRaising Dairy Heifers on Pasture
Raising Dairy Heifers on PastureGardening
 
Biodiesel: The Sustainability Dimensions
Biodiesel: The Sustainability DimensionsBiodiesel: The Sustainability Dimensions
Biodiesel: The Sustainability DimensionsGardening
 
Edible Soybean Production and Marketing
Edible Soybean Production and MarketingEdible Soybean Production and Marketing
Edible Soybean Production and MarketingGardening
 
Moving Beyond Conventional Cash Cropping
Moving Beyond Conventional Cash CroppingMoving Beyond Conventional Cash Cropping
Moving Beyond Conventional Cash CroppingGardening
 
Predator Control for Sustainable & Organic Livestock Production
Predator Control for Sustainable & Organic Livestock ProductionPredator Control for Sustainable & Organic Livestock Production
Predator Control for Sustainable & Organic Livestock ProductionGardening
 

Destaque (20)

Facebook для бизнеса
Facebook для бизнесаFacebook для бизнеса
Facebook для бизнеса
 
Locally Owned Renewable Energy Facilities
Locally Owned Renewable Energy FacilitiesLocally Owned Renewable Energy Facilities
Locally Owned Renewable Energy Facilities
 
Field Bindweed Control Alternatives
Field Bindweed Control AlternativesField Bindweed Control Alternatives
Field Bindweed Control Alternatives
 
Managed Grazing in Riparian Areas
Managed Grazing in Riparian AreasManaged Grazing in Riparian Areas
Managed Grazing in Riparian Areas
 
Selling to Restaurants
Selling to RestaurantsSelling to Restaurants
Selling to Restaurants
 
Grapes: Organic Production
Grapes: Organic ProductionGrapes: Organic Production
Grapes: Organic Production
 
Pork: Marketing Alternatives
Pork: Marketing AlternativesPork: Marketing Alternatives
Pork: Marketing Alternatives
 
Edible Schoolyards & Gardening with Children
Edible Schoolyards & Gardening with ChildrenEdible Schoolyards & Gardening with Children
Edible Schoolyards & Gardening with Children
 
Tools for Managing Internal Parasites in Small Ruminants
Tools for Managing Internal Parasites in Small RuminantsTools for Managing Internal Parasites in Small Ruminants
Tools for Managing Internal Parasites in Small Ruminants
 
B c f section for last pages
B c f section for last pagesB c f section for last pages
B c f section for last pages
 
L'uomo che dovevo uccidere
L'uomo che dovevo uccidereL'uomo che dovevo uccidere
L'uomo che dovevo uccidere
 
Искромётное сердце поэта
Искромётное сердце поэтаИскромётное сердце поэта
Искромётное сердце поэта
 
Montana Farmers Market EBT Manual
Montana Farmers Market EBT ManualMontana Farmers Market EBT Manual
Montana Farmers Market EBT Manual
 
Tree Fruits: Organic Production Overview
Tree Fruits: Organic Production OverviewTree Fruits: Organic Production Overview
Tree Fruits: Organic Production Overview
 
sequential circuit that encodes a hexadecimal 16-key keypad output to 4 – bit...
sequential circuit that encodes a hexadecimal 16-key keypad output to 4 – bit...sequential circuit that encodes a hexadecimal 16-key keypad output to 4 – bit...
sequential circuit that encodes a hexadecimal 16-key keypad output to 4 – bit...
 
Raising Dairy Heifers on Pasture
Raising Dairy Heifers on PastureRaising Dairy Heifers on Pasture
Raising Dairy Heifers on Pasture
 
Biodiesel: The Sustainability Dimensions
Biodiesel: The Sustainability DimensionsBiodiesel: The Sustainability Dimensions
Biodiesel: The Sustainability Dimensions
 
Edible Soybean Production and Marketing
Edible Soybean Production and MarketingEdible Soybean Production and Marketing
Edible Soybean Production and Marketing
 
Moving Beyond Conventional Cash Cropping
Moving Beyond Conventional Cash CroppingMoving Beyond Conventional Cash Cropping
Moving Beyond Conventional Cash Cropping
 
Predator Control for Sustainable & Organic Livestock Production
Predator Control for Sustainable & Organic Livestock ProductionPredator Control for Sustainable & Organic Livestock Production
Predator Control for Sustainable & Organic Livestock Production
 

Semelhante a Html class-01

E-commerce Lab work
E-commerce Lab workE-commerce Lab work
E-commerce Lab workPragya Bisht
 
Computer 10 Lesson 8: Building a Website
Computer 10 Lesson 8: Building a WebsiteComputer 10 Lesson 8: Building a Website
Computer 10 Lesson 8: Building a WebsiteMavein
 
Lesson 8 Building a Website - Computer Pt.pdf
Lesson 8 Building a Website - Computer Pt.pdfLesson 8 Building a Website - Computer Pt.pdf
Lesson 8 Building a Website - Computer Pt.pdfNovelJrPSabonsolin
 
Website creation Module Topic in Digital Marketing Syllabus
Website creation Module Topic in Digital Marketing SyllabusWebsite creation Module Topic in Digital Marketing Syllabus
Website creation Module Topic in Digital Marketing SyllabusManish Kumar Singh
 
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptxINDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx12KritiGaneriwal
 
Nt1310 Final Exam Questions And Answers
Nt1310 Final Exam Questions And AnswersNt1310 Final Exam Questions And Answers
Nt1310 Final Exam Questions And AnswersLisa Williams
 
Web designing and publishing computer studies theory lesson
Web designing and publishing computer studies theory lessonWeb designing and publishing computer studies theory lesson
Web designing and publishing computer studies theory lessonMukalele Rogers
 
Pm shandilya-s-wcodew-web-methodology
Pm shandilya-s-wcodew-web-methodologyPm shandilya-s-wcodew-web-methodology
Pm shandilya-s-wcodew-web-methodologyprashant mishra
 
BASICS OF WEB DESIGNING AND DEVELOPMENT
BASICS OF WEB DESIGNING AND DEVELOPMENTBASICS OF WEB DESIGNING AND DEVELOPMENT
BASICS OF WEB DESIGNING AND DEVELOPMENTKARTHI THANGAVEL
 
A Quick View On Web Design By Speakerhead.com
A Quick View On Web Design By Speakerhead.comA Quick View On Web Design By Speakerhead.com
A Quick View On Web Design By Speakerhead.comspeakerhead-com
 
Introduction web tech
Introduction web techIntroduction web tech
Introduction web techLiaquat Rahoo
 
How to Create a College Website Page Using HTML
How to Create a College Website Page Using HTMLHow to Create a College Website Page Using HTML
How to Create a College Website Page Using HTMLYahyaMemon2
 
Website Planning & Designing By Er. Kapil Bhargava
Website Planning & Designing By Er. Kapil BhargavaWebsite Planning & Designing By Er. Kapil Bhargava
Website Planning & Designing By Er. Kapil BhargavaKapil Bhargava
 

Semelhante a Html class-01 (20)

E-commerce Lab work
E-commerce Lab workE-commerce Lab work
E-commerce Lab work
 
Computer 10 Lesson 8: Building a Website
Computer 10 Lesson 8: Building a WebsiteComputer 10 Lesson 8: Building a Website
Computer 10 Lesson 8: Building a Website
 
Module 3
Module 3Module 3
Module 3
 
Website
WebsiteWebsite
Website
 
Lesson 8 Building a Website - Computer Pt.pdf
Lesson 8 Building a Website - Computer Pt.pdfLesson 8 Building a Website - Computer Pt.pdf
Lesson 8 Building a Website - Computer Pt.pdf
 
Website creation Module Topic in Digital Marketing Syllabus
Website creation Module Topic in Digital Marketing SyllabusWebsite creation Module Topic in Digital Marketing Syllabus
Website creation Module Topic in Digital Marketing Syllabus
 
CSC PPT 3.pptx
CSC PPT 3.pptxCSC PPT 3.pptx
CSC PPT 3.pptx
 
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptxINDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
INDUSTRIAL TRAINING Presentation on Web Development. (2).pptx
 
Module 5 and 6
Module 5 and 6Module 5 and 6
Module 5 and 6
 
Nt1310 Final Exam Questions And Answers
Nt1310 Final Exam Questions And AnswersNt1310 Final Exam Questions And Answers
Nt1310 Final Exam Questions And Answers
 
Web designing and publishing computer studies theory lesson
Web designing and publishing computer studies theory lessonWeb designing and publishing computer studies theory lesson
Web designing and publishing computer studies theory lesson
 
Web Introduction and Google Sites.pptx
Web Introduction and Google Sites.pptxWeb Introduction and Google Sites.pptx
Web Introduction and Google Sites.pptx
 
Introduction to Website Design & Google Sites
Introduction to Website Design & Google SitesIntroduction to Website Design & Google Sites
Introduction to Website Design & Google Sites
 
Pm shandilya-s-wcodew-web-methodology
Pm shandilya-s-wcodew-web-methodologyPm shandilya-s-wcodew-web-methodology
Pm shandilya-s-wcodew-web-methodology
 
BASICS OF WEB DESIGNING AND DEVELOPMENT
BASICS OF WEB DESIGNING AND DEVELOPMENTBASICS OF WEB DESIGNING AND DEVELOPMENT
BASICS OF WEB DESIGNING AND DEVELOPMENT
 
Webdesign
WebdesignWebdesign
Webdesign
 
A Quick View On Web Design By Speakerhead.com
A Quick View On Web Design By Speakerhead.comA Quick View On Web Design By Speakerhead.com
A Quick View On Web Design By Speakerhead.com
 
Introduction web tech
Introduction web techIntroduction web tech
Introduction web tech
 
How to Create a College Website Page Using HTML
How to Create a College Website Page Using HTMLHow to Create a College Website Page Using HTML
How to Create a College Website Page Using HTML
 
Website Planning & Designing By Er. Kapil Bhargava
Website Planning & Designing By Er. Kapil BhargavaWebsite Planning & Designing By Er. Kapil Bhargava
Website Planning & Designing By Er. Kapil Bhargava
 

Mais de Md Ali Hossain (20)

Job environment (for new employee)
Job  environment (for new employee) Job  environment (for new employee)
Job environment (for new employee)
 
Web offset presses
Web offset pressesWeb offset presses
Web offset presses
 
Modern printing technologies
Modern printing technologiesModern printing technologies
Modern printing technologies
 
Screen printing
Screen printingScreen printing
Screen printing
 
Color
ColorColor
Color
 
Flexography
FlexographyFlexography
Flexography
 
Offset printing platon press
Offset printing platon pressOffset printing platon press
Offset printing platon press
 
Flexographic printing 1(9551)
Flexographic printing 1(9551)Flexographic printing 1(9551)
Flexographic printing 1(9551)
 
Press mentainense(9553)
Press mentainense(9553)Press mentainense(9553)
Press mentainense(9553)
 
Flexographic printing 1(9551)
Flexographic printing 1(9551)Flexographic printing 1(9551)
Flexographic printing 1(9551)
 
Special printing
Special printingSpecial printing
Special printing
 
142
142142
142
 
Web authoring design-basics
Web authoring design-basicsWeb authoring design-basics
Web authoring design-basics
 
Site designer
Site designerSite designer
Site designer
 
Httml flash
Httml flashHttml flash
Httml flash
 
Html class-07
Html class-07Html class-07
Html class-07
 
Html class-04
Html class-04Html class-04
Html class-04
 
Html class-02
Html class-02Html class-02
Html class-02
 
Css class-01
Css class-01Css class-01
Css class-01
 
Css class-02
Css class-02Css class-02
Css class-02
 

Último

Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersRaghuram Pandurangan
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningLars Bell
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Mark Simos
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxLoriGlavin3
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteDianaGray10
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfMounikaPolabathina
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity PlanDatabarracks
 

Último (20)

Generative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information DevelopersGenerative AI for Technical Writer or Information Developers
Generative AI for Technical Writer or Information Developers
 
DSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine TuningDSPy a system for AI to Write Prompts and Do Fine Tuning
DSPy a system for AI to Write Prompts and Do Fine Tuning
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
Tampa BSides - Chef's Tour of Microsoft Security Adoption Framework (SAF)
 
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptxPasskey Providers and Enabling Portability: FIDO Paris Seminar.pptx
Passkey Providers and Enabling Portability: FIDO Paris Seminar.pptx
 
Take control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test SuiteTake control of your SAP testing with UiPath Test Suite
Take control of your SAP testing with UiPath Test Suite
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
What is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdfWhat is DBT - The Ultimate Data Build Tool.pdf
What is DBT - The Ultimate Data Build Tool.pdf
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
How to write a Business Continuity Plan
How to write a Business Continuity PlanHow to write a Business Continuity Plan
How to write a Business Continuity Plan
 

Html class-01

  • 1. Md. Ali Hosssain. Web Designer. Jr. Instructor, Graphic Arts Innstitute. Email:Students.gai@gmail.com 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

Notas do Editor

  1. 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 ...
  2. 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