SlideShare una empresa de Scribd logo
1 de 18
Web Forms and
HTML
Sam
Lecture-1
What Is the World Wide Web?
• The World Wide Web—The Web.
• It’s a network of computers
• able to exchange text, graphics, and multimedia information via the Internet.
• You can visit Web-connected computers
• next door, at a nearby university,
• halfway around the world.
Using either a dialup phone line or a much faster broadband (Ethernet, cable, or DSL connection).
• One can take full advantage of the resources these computers make available, including:
• text,
• graphics,
• videos,
• sounds,
• animation.
• Think of the Web as the multimedia version of the Internet, and you’ll be right on the mark.
What is Hypertext?
• The word “hypertext” is a type of text that contains hyperlinks (or just links
for short), which enable the reader to jump from one hypertext page to
another.
• Hypertext gives readers the ability to choose their own path through the
material that interests them.
• Example:
• A book is designed to be read in sequence: Page 2 follows page 1, and so on.
• Sure, you can skip around, but books don’t provide much help, beyond including an
index.
• Computer-based hypertexts let readers jump around all they want.
• The computer part is important because it’s hard to build a hypertext system out of
physical media, such as index cards or pieces of paper.
• The Web is a giant computer-based hypermedia system, and you’ve probably
already done lots of jumping around from one page to another on the Web—
it’s called “Surfing”.
Hypertext Markup Language(Html)
• Markup language uses tags to identify content. It does not perform
functions as in scripting languages.
• HTML is a language for describing how pages of text, graphics, and
other information are organized and linked together.
Or
• HTML enables you to mark up text so that it can function as hypertext
on the Web.
• HTML and HTTP were both invented by Tim Berners-Lee.
• The basic structure of an HTML document includes tags, which
surround content and apply meaning to it.
• The html consist of Elements tags, attributes and values .
Elements And Tags
• An element is a construct(made by combination) consisting (usually) of :
• An opening tag,
• some optional attributes and their respective values,
• some content,
• a closing tag.
• Elements can contain any number of further elements, which are, in turn, made
up of
• tags,
• attributes,
• values,
• content.
• The opening tag can contain multiple attributes, but it cannot contain other elements or tags,
while the closing tag cannot contain anything but itself.
<a href = “abc.html” > My content </a>
Angle Brackets
Content
TagAttribute
Value
Elements Continued..
• Not all elements have closing tags.
• The above said elements are called as self-closing elements, empty elements, or
replaced elements – where as the elements with ending and closing tags are called as
paired, container tags.
• For example: <br>, and <hr>.
• A self-closing element requires a space and a trailing slash,
• such as <br /> or <hr />.
Attributes
• Attributes appear within tags, and they can only contain the value of the attribute.
• They can have multiple values separated by space.
HTML V/S XHTML
• XHTML stands for EXtensible HyperText Markup Language.
• XHTML is almost identical to HTML 4.01 and is a stricter and cleaner
version of HTML.
• There are several rules that apply to XHTML that do not apply to
HTML.
• The <html>, <head>, and <body> tags are all required in XHTML.
• The <html> tag must have an xmlns attribute with a value of
http://www.w3.org/1999/xhtml.
• All elements must be closed - opening tag must have either an equal closing tag
(if it’s a container tag) or a self-closing space-plus-slash.
• All tags must be written in lowercase.
• All attribute values must be quoted with either single quotes or double quotes.
• All attributes must have values.
Basic Html Page Structure
• All HTML documents have three, document-level tags in common. These tags,
1. <html>,
2. <head>,
3. <body>,
delimit certain sections of the HTML document.
<html>
<head>
<title>Basic Page Structure</title>
</head>
<body>
THIS Is my Html Document
</body>
</html>
Html
• The <html> tag surrounds the entire HTML document.
• This tag tells the client browser where the document begins and ends.
Head
• The <head> tag delimits the heading of the HTML document.
or
• The <head> element creates a header section for the document.
• The heading section of the document contains certain heading information for the
document that is not actually content.
• The document’s title,
• Meta information,
• Document scripts are all contained in the <head> section.
• Head portion contain invisible stuff that make page work.
Body
• This is the main body of an HTML document where all of the content
is placed.
• This is the content that people will see, hear, or otherwise experience
when they visit the web page.
Title Tag
• You should specify a title for every page that you write inside the <title>
element. This element is a child of the <head> element). It is used in
several ways:
• It displays at the very top of a browser window.
• It is used as the default name for a bookmark in browsers.
• Therefore it is important to use a title that really describes the content of
your site.
• The <title> element should contain only the text for the title and it may
not contain any other elements.
Meta Tag
• Metadata is data (information) about data,
• that will not be displayed on the page
• Can be used by the various processes such as, Web Browser and Webserver.
• Helps in Search Engine Optimization(SEO).
• HTML lets authors specify meta data -- information about a document rather than document content --
in a variety of ways.
• Examples
• Define keywords for search engines:
<meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript">
• Example 2 - Define a description of your web page:
<meta name="description" content="Free Web tutorials on HTML and CSS">
• Example 3 - Define the author of a page:
<meta name="author" content="Hege Refsnes">
• Example 4 - Refresh document every 30 seconds:
<meta http-equiv="refresh" content="30">
<meta http-equiv="refresh" content="3; url=http://www.google.com" >
• Example 5 – Define Charter Set For Page :
<meta charset="UTF-8">
<meta http-equiv="content-type" content="text/html; charset=UTF-8" >
Generic Attributes
• Attributes are used to amplify tags.
• What we mean by amplify is that when a web browser interprets a tag, it will also search for
set attributes and then display the element (tags+attributes) in its entirety.
• Many HTML tags have a unique set of their own attributes.
Attribute Options Function
align right, left, center Horizontally aligns tags
valign top, middle, bottom
Vertically aligns tags within an HTML
element.
bgcolor
numeric, hexidecimal, RGB
values
Places a background color behind an
element
background URL
Places an background image behind an
element
id User Defined
Names an element for use with
Cascading Style Sheets.
class User Defined
Classifies an element for use with
Cascading Style Sheets.
width Numeric Value
Specifies the width of tables, images,
or table cells.
height Numeric Value
Specifies the height of tables, images,
or table cells.
title User Defined "Pop-up" title for your elements.
Html Formatting Tags
Headings(<h1> to <h6>):
• Any documents starts with a heading.
• You use different sizes for your headings.
• Html has headings raging from 1 to 6.
• It is a paired Tag.
• Example:
<h1>This is heading 1</h1>
<h2>This is heading 2</h2>
<h3>This is heading 3</h3>
<h4>This is heading 4</h4>
<h5>This is heading 5</h5>
<h6>This is heading 6</h6>
Paragraph Tag <p>:
•Publishing any kind of written works requires the use of a paragraph.
•The <p> tag defines a paragraph. Using this tag places a blank line above and below the text of the paragraph.
• It is a paired Tag.
•You can use align attribute to align your paragraphs.
• Left
• Center
• Right
• Justify
•Example:
<p>This is paragraph</p>
Html Formatting Tags
Line Breaks - The <br /> :
• A line break ends the line you are currently on and resumes on the next line.
•Placing <br /> within the code is the same as pressing the return key in a word processor. 
•Example:
Line break Really works<br/>
Horizontal Rules - <hr /> :
•Horizontal rules are used to visually break up sections of a document.
•The <hr> tag creates a line from the current position in the document to the right margin and breaks the line accordingly.
•Example:
Hidaya Foundation<hr/>
Hidaya Trust
Preserve Formatting - <pre> :
•Sometimes you want the text to appear in same format as it was typed in – make use of <pre> …</pre> tags.
•Example:
<pre>
Hidaya Foundation
Hidaya Trust
Hidaya Institute Of Science And Technology
</pre>
Bold and Italic Text - (<b>..<b/> <i>..</i> ):
•If one wants to make the fonts of content bold , italic – can make use of <b> and <i> tags with respective ending tags.
•Example:
This <b>Bold</b> and <i>Italicized </i> text.
Comments In Html
• A comment is a way for you as the web page developer to control what
lines of code are to be ignored by the web browser.
• Placing notes and reminders to yourself is a great way to remind
yourself what pieces of code are doing what.
• Syntax for commenting
<!--
Code Successfully Commented
-->
Suppose if there is you are using a client side scripting language then:
<script>
<!-- document.write("Hello World!") //-->
</script>
Assignments
• Write 10 to 15 tags with details
• Make a html webpage
Questions
?

Más contenido relacionado

La actualidad más candente

Elements of html powerpoint
Elements of html powerpointElements of html powerpoint
Elements of html powerpointAnastasia1993
 
Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3bluejayjunior
 
Web I - 02 - XHTML Introduction
Web I - 02 - XHTML IntroductionWeb I - 02 - XHTML Introduction
Web I - 02 - XHTML IntroductionRandy Connolly
 
Introduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSIntroduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSJussi Pohjolainen
 
How the Web Works Using HTML
How the Web Works Using HTMLHow the Web Works Using HTML
How the Web Works Using HTMLMarlon Jamera
 
Xhtml and html5 basics
Xhtml and html5 basicsXhtml and html5 basics
Xhtml and html5 basicsmessinam
 
introduction to web technology
introduction to web technologyintroduction to web technology
introduction to web technologyvikram singh
 
An Introduction to HTML
An Introduction to HTMLAn Introduction to HTML
An Introduction to HTMLcrea8ivemoiz
 
Origins and evolution of HTML and XHTML
Origins and evolution of HTML and XHTMLOrigins and evolution of HTML and XHTML
Origins and evolution of HTML and XHTMLHowpk
 
Introduction to Web Technology
Introduction to Web TechnologyIntroduction to Web Technology
Introduction to Web TechnologyRob Bertholf
 

La actualidad más candente (20)

Html 5
Html 5Html 5
Html 5
 
Elements of html powerpoint
Elements of html powerpointElements of html powerpoint
Elements of html powerpoint
 
Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3Intr to-html-xhtml-1233508169541646-3
Intr to-html-xhtml-1233508169541646-3
 
Web I - 02 - XHTML Introduction
Web I - 02 - XHTML IntroductionWeb I - 02 - XHTML Introduction
Web I - 02 - XHTML Introduction
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Introduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSSIntroduction to XML, XHTML and CSS
Introduction to XML, XHTML and CSS
 
HTML5
HTML5 HTML5
HTML5
 
How the Web Works Using HTML
How the Web Works Using HTMLHow the Web Works Using HTML
How the Web Works Using HTML
 
Design Tools Html Xhtml
Design Tools Html XhtmlDesign Tools Html Xhtml
Design Tools Html Xhtml
 
Xhtml and html5 basics
Xhtml and html5 basicsXhtml and html5 basics
Xhtml and html5 basics
 
Unit 2 (html)
Unit 2  (html)Unit 2  (html)
Unit 2 (html)
 
Iwt module 1
Iwt  module 1Iwt  module 1
Iwt module 1
 
introduction to web technology
introduction to web technologyintroduction to web technology
introduction to web technology
 
Web Site Designing - Basic
Web Site Designing - Basic Web Site Designing - Basic
Web Site Designing - Basic
 
An Introduction to HTML
An Introduction to HTMLAn Introduction to HTML
An Introduction to HTML
 
Origins and evolution of HTML and XHTML
Origins and evolution of HTML and XHTMLOrigins and evolution of HTML and XHTML
Origins and evolution of HTML and XHTML
 
Grade 10 COMPUTER
Grade 10 COMPUTERGrade 10 COMPUTER
Grade 10 COMPUTER
 
Html formatting
Html formattingHtml formatting
Html formatting
 
Html
HtmlHtml
Html
 
Introduction to Web Technology
Introduction to Web TechnologyIntroduction to Web Technology
Introduction to Web Technology
 

Destacado

Motivating Employees
Motivating EmployeesMotivating Employees
Motivating EmployeesDenni Domingo
 
What is the point of having a good life if everything will end to death? How ...
What is the point of having a good life if everything will end to death? How ...What is the point of having a good life if everything will end to death? How ...
What is the point of having a good life if everything will end to death? How ...Denni Domingo
 
The overall concept of financial management
The overall concept of financial managementThe overall concept of financial management
The overall concept of financial managementDenni Domingo
 
Bonds and their characteristcs
Bonds and their characteristcsBonds and their characteristcs
Bonds and their characteristcsDenni Domingo
 
Psychological attributes of personality
Psychological attributes of personalityPsychological attributes of personality
Psychological attributes of personalityDenni Domingo
 
Hibik ng pilipinas sa inang espanya (trilogy)
Hibik ng pilipinas sa inang espanya (trilogy)Hibik ng pilipinas sa inang espanya (trilogy)
Hibik ng pilipinas sa inang espanya (trilogy)Denni Domingo
 
Foundation of personality
Foundation of personalityFoundation of personality
Foundation of personalityDenni Domingo
 
Aspects of individual's personality
Aspects of individual's personalityAspects of individual's personality
Aspects of individual's personalityDenni Domingo
 

Destacado (10)

Motivating Employees
Motivating EmployeesMotivating Employees
Motivating Employees
 
Html images
Html imagesHtml images
Html images
 
What is the point of having a good life if everything will end to death? How ...
What is the point of having a good life if everything will end to death? How ...What is the point of having a good life if everything will end to death? How ...
What is the point of having a good life if everything will end to death? How ...
 
Sa aking mga kabata
Sa aking mga kabataSa aking mga kabata
Sa aking mga kabata
 
The overall concept of financial management
The overall concept of financial managementThe overall concept of financial management
The overall concept of financial management
 
Bonds and their characteristcs
Bonds and their characteristcsBonds and their characteristcs
Bonds and their characteristcs
 
Psychological attributes of personality
Psychological attributes of personalityPsychological attributes of personality
Psychological attributes of personality
 
Hibik ng pilipinas sa inang espanya (trilogy)
Hibik ng pilipinas sa inang espanya (trilogy)Hibik ng pilipinas sa inang espanya (trilogy)
Hibik ng pilipinas sa inang espanya (trilogy)
 
Foundation of personality
Foundation of personalityFoundation of personality
Foundation of personality
 
Aspects of individual's personality
Aspects of individual's personalityAspects of individual's personality
Aspects of individual's personality
 

Similar a Web forms and html (lect 1)

Lecture 2 introduction to html basics
Lecture 2 introduction to html basicsLecture 2 introduction to html basics
Lecture 2 introduction to html basicsAliMUSSA3
 
HTML introduction for beginners Slides .pptx
HTML introduction for beginners Slides .pptxHTML introduction for beginners Slides .pptx
HTML introduction for beginners Slides .pptxwewit44414
 
introdution-to-html.ppt coding programming
introdution-to-html.ppt coding programmingintrodution-to-html.ppt coding programming
introdution-to-html.ppt coding programmingprogramizconsultancy
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptxStefan Oprea
 
web development.pdf
web development.pdfweb development.pdf
web development.pdfBagHarki
 
Std 10 Computer Chapter 1 introduction to HTML (Part 1)
Std 10 Computer Chapter 1  introduction to HTML (Part 1)Std 10 Computer Chapter 1  introduction to HTML (Part 1)
Std 10 Computer Chapter 1 introduction to HTML (Part 1)Nuzhat Memon
 
Website/Web Applications / Static vs Dynamic Website / Web Browser /
Website/Web Applications  / Static vs Dynamic Website / Web Browser / Website/Web Applications  / Static vs Dynamic Website / Web Browser /
Website/Web Applications / Static vs Dynamic Website / Web Browser / Sachin Yadav
 
SDP_-_Module_4.ppt
SDP_-_Module_4.pptSDP_-_Module_4.ppt
SDP_-_Module_4.pptssuser568d77
 
LS2.1_V1_HTML.pptx
LS2.1_V1_HTML.pptxLS2.1_V1_HTML.pptx
LS2.1_V1_HTML.pptxLokeshS94
 
Computer fundamentals-internet p2
Computer fundamentals-internet p2Computer fundamentals-internet p2
Computer fundamentals-internet p2Leo Mark Villar
 
BITM3730Week1.pptx
BITM3730Week1.pptxBITM3730Week1.pptx
BITM3730Week1.pptxMattMarino13
 
introduction-to-html hyper text markup .ppt
introduction-to-html hyper text markup  .pptintroduction-to-html hyper text markup  .ppt
introduction-to-html hyper text markup .pptubaidullah75790
 
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
 

Similar a Web forms and html (lect 1) (20)

Html
HtmlHtml
Html
 
Lecture 2 introduction to html basics
Lecture 2 introduction to html basicsLecture 2 introduction to html basics
Lecture 2 introduction to html basics
 
HTML & CSS.ppt
HTML & CSS.pptHTML & CSS.ppt
HTML & CSS.ppt
 
HTML introduction for beginners Slides .pptx
HTML introduction for beginners Slides .pptxHTML introduction for beginners Slides .pptx
HTML introduction for beginners Slides .pptx
 
introdution-to-html.ppt coding programming
introdution-to-html.ppt coding programmingintrodution-to-html.ppt coding programming
introdution-to-html.ppt coding programming
 
Html
HtmlHtml
Html
 
Batch -25 PPT.pptx
Batch -25 PPT.pptxBatch -25 PPT.pptx
Batch -25 PPT.pptx
 
Presentation html
Presentation   htmlPresentation   html
Presentation html
 
Web technologies-course 02.pptx
Web technologies-course 02.pptxWeb technologies-course 02.pptx
Web technologies-course 02.pptx
 
web development.pdf
web development.pdfweb development.pdf
web development.pdf
 
Html
HtmlHtml
Html
 
Std 10 Computer Chapter 1 introduction to HTML (Part 1)
Std 10 Computer Chapter 1  introduction to HTML (Part 1)Std 10 Computer Chapter 1  introduction to HTML (Part 1)
Std 10 Computer Chapter 1 introduction to HTML (Part 1)
 
Class1slides
Class1slidesClass1slides
Class1slides
 
Website/Web Applications / Static vs Dynamic Website / Web Browser /
Website/Web Applications  / Static vs Dynamic Website / Web Browser / Website/Web Applications  / Static vs Dynamic Website / Web Browser /
Website/Web Applications / Static vs Dynamic Website / Web Browser /
 
SDP_-_Module_4.ppt
SDP_-_Module_4.pptSDP_-_Module_4.ppt
SDP_-_Module_4.ppt
 
LS2.1_V1_HTML.pptx
LS2.1_V1_HTML.pptxLS2.1_V1_HTML.pptx
LS2.1_V1_HTML.pptx
 
Computer fundamentals-internet p2
Computer fundamentals-internet p2Computer fundamentals-internet p2
Computer fundamentals-internet p2
 
BITM3730Week1.pptx
BITM3730Week1.pptxBITM3730Week1.pptx
BITM3730Week1.pptx
 
introduction-to-html hyper text markup .ppt
introduction-to-html hyper text markup  .pptintroduction-to-html hyper text markup  .ppt
introduction-to-html hyper text markup .ppt
 
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
 

Más de Salman Memon

PHP Array very Easy Demo
PHP Array very Easy DemoPHP Array very Easy Demo
PHP Array very Easy DemoSalman Memon
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation Salman Memon
 
How to Use Dreamweaver cs6
How to Use Dreamweaver cs6 How to Use Dreamweaver cs6
How to Use Dreamweaver cs6 Salman Memon
 
what is programming and its clear Concepts to the point
what is programming and its clear Concepts to the point what is programming and its clear Concepts to the point
what is programming and its clear Concepts to the point Salman Memon
 
Working with variables in PHP
Working with variables in PHPWorking with variables in PHP
Working with variables in PHPSalman Memon
 
Web forms and html (lect 5)
Web forms and html (lect 5)Web forms and html (lect 5)
Web forms and html (lect 5)Salman Memon
 
Web forms and html (lect 4)
Web forms and html (lect 4)Web forms and html (lect 4)
Web forms and html (lect 4)Salman Memon
 
Web forms and html (lect 3)
Web forms and html (lect 3)Web forms and html (lect 3)
Web forms and html (lect 3)Salman Memon
 
Web forms and html (lect 2)
Web forms and html (lect 2)Web forms and html (lect 2)
Web forms and html (lect 2)Salman Memon
 
Managing in the Future Enterprise
Managing in the Future EnterpriseManaging in the Future Enterprise
Managing in the Future EnterpriseSalman Memon
 
Overview of Technology Management
Overview of Technology ManagementOverview of Technology Management
Overview of Technology ManagementSalman Memon
 
Align Information Technology and Business Strategy
Align Information Technology and Business Strategy Align Information Technology and Business Strategy
Align Information Technology and Business Strategy Salman Memon
 
WHITE BOX & BLACK BOX TESTING IN DATABASE
WHITE BOX & BLACK BOXTESTING IN DATABASEWHITE BOX & BLACK BOXTESTING IN DATABASE
WHITE BOX & BLACK BOX TESTING IN DATABASESalman Memon
 
Email security netwroking
Email security  netwrokingEmail security  netwroking
Email security netwrokingSalman Memon
 
Email security - Netwroking
Email security - Netwroking Email security - Netwroking
Email security - Netwroking Salman Memon
 
Query decomposition in data base
Query decomposition in data baseQuery decomposition in data base
Query decomposition in data baseSalman Memon
 
Multimedea device and routes
Multimedea device and routesMultimedea device and routes
Multimedea device and routesSalman Memon
 

Más de Salman Memon (20)

PHP Array very Easy Demo
PHP Array very Easy DemoPHP Array very Easy Demo
PHP Array very Easy Demo
 
Complete Lecture on Css presentation
Complete Lecture on Css presentation Complete Lecture on Css presentation
Complete Lecture on Css presentation
 
How to Use Dreamweaver cs6
How to Use Dreamweaver cs6 How to Use Dreamweaver cs6
How to Use Dreamweaver cs6
 
what is programming and its clear Concepts to the point
what is programming and its clear Concepts to the point what is programming and its clear Concepts to the point
what is programming and its clear Concepts to the point
 
Working with variables in PHP
Working with variables in PHPWorking with variables in PHP
Working with variables in PHP
 
Web forms and html (lect 5)
Web forms and html (lect 5)Web forms and html (lect 5)
Web forms and html (lect 5)
 
Web forms and html (lect 4)
Web forms and html (lect 4)Web forms and html (lect 4)
Web forms and html (lect 4)
 
Web forms and html (lect 3)
Web forms and html (lect 3)Web forms and html (lect 3)
Web forms and html (lect 3)
 
Web forms and html (lect 2)
Web forms and html (lect 2)Web forms and html (lect 2)
Web forms and html (lect 2)
 
Managing in the Future Enterprise
Managing in the Future EnterpriseManaging in the Future Enterprise
Managing in the Future Enterprise
 
Overview of Technology Management
Overview of Technology ManagementOverview of Technology Management
Overview of Technology Management
 
Align Information Technology and Business Strategy
Align Information Technology and Business Strategy Align Information Technology and Business Strategy
Align Information Technology and Business Strategy
 
WHITE BOX & BLACK BOX TESTING IN DATABASE
WHITE BOX & BLACK BOXTESTING IN DATABASEWHITE BOX & BLACK BOXTESTING IN DATABASE
WHITE BOX & BLACK BOX TESTING IN DATABASE
 
Email security netwroking
Email security  netwrokingEmail security  netwroking
Email security netwroking
 
Email security - Netwroking
Email security - Netwroking Email security - Netwroking
Email security - Netwroking
 
Query decomposition in data base
Query decomposition in data baseQuery decomposition in data base
Query decomposition in data base
 
Time Management
Time Management Time Management
Time Management
 
Multimedea device and routes
Multimedea device and routesMultimedea device and routes
Multimedea device and routes
 
Hash function
Hash function Hash function
Hash function
 
Data clustring
Data clustring Data clustring
Data clustring
 

Último

A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...PsychoTech Services
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 

Último (20)

A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 

Web forms and html (lect 1)

  • 3. What Is the World Wide Web? • The World Wide Web—The Web. • It’s a network of computers • able to exchange text, graphics, and multimedia information via the Internet. • You can visit Web-connected computers • next door, at a nearby university, • halfway around the world. Using either a dialup phone line or a much faster broadband (Ethernet, cable, or DSL connection). • One can take full advantage of the resources these computers make available, including: • text, • graphics, • videos, • sounds, • animation. • Think of the Web as the multimedia version of the Internet, and you’ll be right on the mark.
  • 4. What is Hypertext? • The word “hypertext” is a type of text that contains hyperlinks (or just links for short), which enable the reader to jump from one hypertext page to another. • Hypertext gives readers the ability to choose their own path through the material that interests them. • Example: • A book is designed to be read in sequence: Page 2 follows page 1, and so on. • Sure, you can skip around, but books don’t provide much help, beyond including an index. • Computer-based hypertexts let readers jump around all they want. • The computer part is important because it’s hard to build a hypertext system out of physical media, such as index cards or pieces of paper. • The Web is a giant computer-based hypermedia system, and you’ve probably already done lots of jumping around from one page to another on the Web— it’s called “Surfing”.
  • 5. Hypertext Markup Language(Html) • Markup language uses tags to identify content. It does not perform functions as in scripting languages. • HTML is a language for describing how pages of text, graphics, and other information are organized and linked together. Or • HTML enables you to mark up text so that it can function as hypertext on the Web. • HTML and HTTP were both invented by Tim Berners-Lee. • The basic structure of an HTML document includes tags, which surround content and apply meaning to it. • The html consist of Elements tags, attributes and values .
  • 6. Elements And Tags • An element is a construct(made by combination) consisting (usually) of : • An opening tag, • some optional attributes and their respective values, • some content, • a closing tag. • Elements can contain any number of further elements, which are, in turn, made up of • tags, • attributes, • values, • content. • The opening tag can contain multiple attributes, but it cannot contain other elements or tags, while the closing tag cannot contain anything but itself. <a href = “abc.html” > My content </a> Angle Brackets Content TagAttribute Value
  • 7. Elements Continued.. • Not all elements have closing tags. • The above said elements are called as self-closing elements, empty elements, or replaced elements – where as the elements with ending and closing tags are called as paired, container tags. • For example: <br>, and <hr>. • A self-closing element requires a space and a trailing slash, • such as <br /> or <hr />. Attributes • Attributes appear within tags, and they can only contain the value of the attribute. • They can have multiple values separated by space.
  • 8. HTML V/S XHTML • XHTML stands for EXtensible HyperText Markup Language. • XHTML is almost identical to HTML 4.01 and is a stricter and cleaner version of HTML. • There are several rules that apply to XHTML that do not apply to HTML. • The <html>, <head>, and <body> tags are all required in XHTML. • The <html> tag must have an xmlns attribute with a value of http://www.w3.org/1999/xhtml. • All elements must be closed - opening tag must have either an equal closing tag (if it’s a container tag) or a self-closing space-plus-slash. • All tags must be written in lowercase. • All attribute values must be quoted with either single quotes or double quotes. • All attributes must have values.
  • 9. Basic Html Page Structure • All HTML documents have three, document-level tags in common. These tags, 1. <html>, 2. <head>, 3. <body>, delimit certain sections of the HTML document. <html> <head> <title>Basic Page Structure</title> </head> <body> THIS Is my Html Document </body> </html>
  • 10. Html • The <html> tag surrounds the entire HTML document. • This tag tells the client browser where the document begins and ends. Head • The <head> tag delimits the heading of the HTML document. or • The <head> element creates a header section for the document. • The heading section of the document contains certain heading information for the document that is not actually content. • The document’s title, • Meta information, • Document scripts are all contained in the <head> section. • Head portion contain invisible stuff that make page work. Body • This is the main body of an HTML document where all of the content is placed. • This is the content that people will see, hear, or otherwise experience when they visit the web page.
  • 11. Title Tag • You should specify a title for every page that you write inside the <title> element. This element is a child of the <head> element). It is used in several ways: • It displays at the very top of a browser window. • It is used as the default name for a bookmark in browsers. • Therefore it is important to use a title that really describes the content of your site. • The <title> element should contain only the text for the title and it may not contain any other elements.
  • 12. Meta Tag • Metadata is data (information) about data, • that will not be displayed on the page • Can be used by the various processes such as, Web Browser and Webserver. • Helps in Search Engine Optimization(SEO). • HTML lets authors specify meta data -- information about a document rather than document content -- in a variety of ways. • Examples • Define keywords for search engines: <meta name="keywords" content="HTML, CSS, XML, XHTML, JavaScript"> • Example 2 - Define a description of your web page: <meta name="description" content="Free Web tutorials on HTML and CSS"> • Example 3 - Define the author of a page: <meta name="author" content="Hege Refsnes"> • Example 4 - Refresh document every 30 seconds: <meta http-equiv="refresh" content="30"> <meta http-equiv="refresh" content="3; url=http://www.google.com" > • Example 5 – Define Charter Set For Page : <meta charset="UTF-8"> <meta http-equiv="content-type" content="text/html; charset=UTF-8" >
  • 13. Generic Attributes • Attributes are used to amplify tags. • What we mean by amplify is that when a web browser interprets a tag, it will also search for set attributes and then display the element (tags+attributes) in its entirety. • Many HTML tags have a unique set of their own attributes. Attribute Options Function align right, left, center Horizontally aligns tags valign top, middle, bottom Vertically aligns tags within an HTML element. bgcolor numeric, hexidecimal, RGB values Places a background color behind an element background URL Places an background image behind an element id User Defined Names an element for use with Cascading Style Sheets. class User Defined Classifies an element for use with Cascading Style Sheets. width Numeric Value Specifies the width of tables, images, or table cells. height Numeric Value Specifies the height of tables, images, or table cells. title User Defined "Pop-up" title for your elements.
  • 14. Html Formatting Tags Headings(<h1> to <h6>): • Any documents starts with a heading. • You use different sizes for your headings. • Html has headings raging from 1 to 6. • It is a paired Tag. • Example: <h1>This is heading 1</h1> <h2>This is heading 2</h2> <h3>This is heading 3</h3> <h4>This is heading 4</h4> <h5>This is heading 5</h5> <h6>This is heading 6</h6> Paragraph Tag <p>: •Publishing any kind of written works requires the use of a paragraph. •The <p> tag defines a paragraph. Using this tag places a blank line above and below the text of the paragraph. • It is a paired Tag. •You can use align attribute to align your paragraphs. • Left • Center • Right • Justify •Example: <p>This is paragraph</p>
  • 15. Html Formatting Tags Line Breaks - The <br /> : • A line break ends the line you are currently on and resumes on the next line. •Placing <br /> within the code is the same as pressing the return key in a word processor.  •Example: Line break Really works<br/> Horizontal Rules - <hr /> : •Horizontal rules are used to visually break up sections of a document. •The <hr> tag creates a line from the current position in the document to the right margin and breaks the line accordingly. •Example: Hidaya Foundation<hr/> Hidaya Trust Preserve Formatting - <pre> : •Sometimes you want the text to appear in same format as it was typed in – make use of <pre> …</pre> tags. •Example: <pre> Hidaya Foundation Hidaya Trust Hidaya Institute Of Science And Technology </pre> Bold and Italic Text - (<b>..<b/> <i>..</i> ): •If one wants to make the fonts of content bold , italic – can make use of <b> and <i> tags with respective ending tags. •Example: This <b>Bold</b> and <i>Italicized </i> text.
  • 16. Comments In Html • A comment is a way for you as the web page developer to control what lines of code are to be ignored by the web browser. • Placing notes and reminders to yourself is a great way to remind yourself what pieces of code are doing what. • Syntax for commenting <!-- Code Successfully Commented --> Suppose if there is you are using a client side scripting language then: <script> <!-- document.write("Hello World!") //--> </script>
  • 17. Assignments • Write 10 to 15 tags with details • Make a html webpage