SlideShare a Scribd company logo
1 of 36
HTML
• HTML is a document-layout and hyperlinkspecification language. It defines the syntax and
placement of special, embedded directions that aren't
displayed by the browser, but tell it how to
display the contents of the document, including text,
images, and other support media. The language
also tells you how to make a document interactive
through special hypertext links, which connect your
document with other documents - on either your
computer or someone else's, as well as with other
Internet resources, like FTP
•

BODY
The output looks like:
UIUC
University of Illinois at Urbana-Champaign is one of three campuses of the University of
Illinois
system
UIC
University of Illinois at Chicago is another campus
UIS
University of Illinois at Springfield is the newest campus in the system
The <DT> and <DD> entries can contain multiple paragraphs (indicated by <P>
paragraph tags), lists, or other
definition information.
Nested Lists
Lists can be nested. You can also have a number of paragraphs, each containing a
nested list, in a single list item.
Here is a sample nested list:
<UL>
<LI> A few New England states:
<UL>
<LI> Vermont
<LI> New Hampshire
<LI> Maine
</UL>
<LI> Two Midwestern states:
<UL>
<LI> Michigan
<LI> Indiana
</UL>
</UL>
Image Maps
Understanding How Image Maps Work
Creating an image map involves three steps: creating the graphic, mapping the graphic
for hot zones, and placing the correct information (along with the correct programs) on
the Web server itself..
The Map Server Program
When a user clicks an image map on a Web page, the browser determines the
coordinates of the graphic (in pixels) that describe where the user clicked. The browser
then passes these numbers to the map server program, along with the name of the file
that contains the URLs that correspond to coordinates
Defining Your Image Map Hot Zones
As a designer, you are responsible for doing two things in the hot zone definition
process. First, you need to define the hot zones to create the image map-that is, you
need to decide what URL the coordinates will correspond to when the image map is
clicked. Second, you need to create the map definition file that makes the hot zone
information available to the Web server these coordinates.
<html><head></head><body>
<map name=“ab” >
<area shape=“circ” coords=“200,300,100” href=“a1.html” />
<area shape=“rect” coords=“300,400,200,100” href=“a2.html” />
</map>
<img src=“a1.gif” usemap=“#ab” />
</body>
</html>
Forms
•
•
•
•

•

An HTML form is part of a web page that includes area where readers can enter
information to be sent back to you, the publisher of the web page.
Creating a form
Every form begins with a form tag that can be located anywhere in body of HTM
document. The form tag has two main attributes:
method: This attrbute can take two values: get and post. Post means to send the
form entries as a document. Get submits the results as a part of URL header in the
form of result query which is in the form of name-value pairs separated by &
action: action attribute specifies the address to which to send the form data. The
address can take two values:
– Location of form processing script on a web server
– mailto: followed by your email address.

•
•
•
•
•
•

Various fields or elements of a form
Textfield-one line text boxes
Syntax: <input type=text name=“txt1” value=“” size=3 maxlength=5 />
Radio button- used when we want the user to select one of a limited number of
choices.
Syntax: <input type=“radio” name=“rd1” value=“male” />Male
The name remains same for all radio buttons but value varies with the label it is
representing.
• Checkboxes- checkboxes are used when we want the user to select
more than one choice
• Syntax: <input type=“checkbox” name=“chk1” value=“MCA”
checked />MCA
• When the form is submitted the values are submitted to server as
name value pairs
• Action buttons on form- Action buttons are special buttons that are
included in form for submitting the form’s entries to server, for
resetting the entries of the form and for initiating various events using
language like javascript
• Submit button- The submit button submits the entries of forms to the
server
• Syntax: <input type=“submit” name=“bt1” value=“submit” />
• Reset button- To reset or refill the form
• Syntax: <input type=“reset” name=“bt2” value=“reset” />
• Custom image button- To include an image as a button in form
• Syntax: <input type=image src=“a.gif” name=“bt3” align=“top” />
•
•
•
•
•
•
•
•
•
•
•
•
•

Push buttons:
Syntax :<input type=“button” name=“bt4” value=“abc” />
Hidden fields: to pass some hidden values
Syntax:<input type=“hidden” name=“txt4” value=“” />
Textarea- Used for entering more than one line text( multiline text
entry)
Syntax: <textarea name=“” cols=“2” rows=“4”></textarea>
Multichoice elements: used for drawing pulldown menus
Syntax: <select name=“s1” multiple>
<option value=“ ”> </option>
<option value=“ “></option>
</select>
By default all options of select tag are unselected
<option selected></option>
• Labels: The label tag is used to define the relationships between a
form control such as a text input field and one or more text labels
• <label>Name</label>
• Password field: The password field is used to get password inputs
from the user
• <input type=“password” name=“ps” value=“” />
Frames
A frame is a rectangular region within the browser window that displays
a web page alongside other pages in other frames
To create frames in a web page, a special kind of document is created
called the frameset document. A frameset document is an HTML page
that instructs the web browser to split its window into multiple frames
and specifies which web page should be displayed in each frame. The
frameset document does not contain a body tag. No tags that can be
contained in a body tag can be written in a frameset tag.
The frameset tag has two attributes : rows and cols
rows: This attribute is used for creating horizontal frames. The height of
frames is specified in pixels, percentage or as a proportion of the
remaining space by using “*”.
cols: This attribute is used for vertical frames and widths are specified as
comma delimited list of sizes in pixels , percentage or proportion of
remaining space by using “*”
• Frame Tag
• Within the frameset tag, frame tag is included indicating the HTML
document to be displayed in the frame. Frame tag has an attribute:
• src: which gets the address of web page to be loaded in that frame
• name: indicating the name of the frame. The name property is used to
set the value of target property of anchor tag. The target property of
the anchor tag can be:
• _blank- loads link in the new unnamed window
• _top-loads the link in entire browser window
• _parent-loads the link over the parent frame if current frame is nested
within other frames
• _self- loads link into current frame replacing the document now being
displayed in this frame. This is by default.
• Nested frames- By nesting one frameset within another, one can
create rather complex frame layouts
• <html><head></head>
• <frameset rows=“43,*,43” >
• <frameset cols=“43,*,43” >
• <frame src=“a.html” />
• <frame src=“b.html” />
• <frame src=“c.html” />
• </frameset>
• <frameset cols=“43,*,43” >
• <frame src=“d.html” />
• <frame src=“e.html” />
• <frame src=“f.html” />
• </frameset>
•
•
•
•
•
•

<frameset cols=“43,*,43” >
<frame src=“g.html” />
<frame src=“h.html” />
<frame src=“k.html” />
</frameset>
</frameset></html>
•
•
•

•
•

Other attributes taken by frameset tag are:
Framespacing- specifies the spacing between the frames.
Border-size in pixels
Frameborder- to specify whether the frames contain the border or not.
Takes value 1 or 0 for true or false respectively.
Other attributes of frame tag are:
Scrolling- display scroll bar or not . Gets the value yes or no
Noresize-don’t allow this frame to be resized.

More Related Content

What's hot

Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to JavascriptSeble Nigussie
 
Bt0087 wml and wap programing2
Bt0087 wml and wap programing2Bt0087 wml and wap programing2
Bt0087 wml and wap programing2Techglyphs
 
HTML Forms Tutorial
HTML Forms TutorialHTML Forms Tutorial
HTML Forms TutorialProdigyView
 
XML Tutor maXbox starter27
XML Tutor maXbox starter27XML Tutor maXbox starter27
XML Tutor maXbox starter27Max Kleiner
 
Unit 4 - HTTP and the Web Services - IT
Unit 4 - HTTP and the Web Services - ITUnit 4 - HTTP and the Web Services - IT
Unit 4 - HTTP and the Web Services - ITDeepraj Bhujel
 
uniform resource locator
uniform resource locatoruniform resource locator
uniform resource locatorrajshreemuthiah
 
Creating xml publisher documents with people code
Creating xml publisher documents with people codeCreating xml publisher documents with people code
Creating xml publisher documents with people codeRandall Groncki
 
Understanding and Developing Web Services - For DBAs and Developers (whitepaper)
Understanding and Developing Web Services - For DBAs and Developers (whitepaper)Understanding and Developing Web Services - For DBAs and Developers (whitepaper)
Understanding and Developing Web Services - For DBAs and Developers (whitepaper)Revelation Technologies
 
ADO Controls - Database Usage from Exploring MS Visual Basic 6.0 Book
ADO Controls - Database Usage from Exploring MS Visual Basic 6.0 BookADO Controls - Database Usage from Exploring MS Visual Basic 6.0 Book
ADO Controls - Database Usage from Exploring MS Visual Basic 6.0 BookMuralidharan Radhakrishnan
 
Xml in bio medical field
Xml in bio medical fieldXml in bio medical field
Xml in bio medical fieldJuman Ghazi
 

What's hot (20)

HTML Forms
HTML FormsHTML Forms
HTML Forms
 
Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
 
Introduction to HTML
Introduction to HTMLIntroduction to HTML
Introduction to HTML
 
Introduction to CSS3
Introduction to CSS3Introduction to CSS3
Introduction to CSS3
 
Html5
Html5 Html5
Html5
 
html forms
html formshtml forms
html forms
 
Xmll
XmllXmll
Xmll
 
Bt0087 wml and wap programing2
Bt0087 wml and wap programing2Bt0087 wml and wap programing2
Bt0087 wml and wap programing2
 
HTML Forms Tutorial
HTML Forms TutorialHTML Forms Tutorial
HTML Forms Tutorial
 
Html class-04
Html class-04Html class-04
Html class-04
 
Chapter7 web application
Chapter7 web applicationChapter7 web application
Chapter7 web application
 
XML Tutor maXbox starter27
XML Tutor maXbox starter27XML Tutor maXbox starter27
XML Tutor maXbox starter27
 
Unit 4 - HTTP and the Web Services - IT
Unit 4 - HTTP and the Web Services - ITUnit 4 - HTTP and the Web Services - IT
Unit 4 - HTTP and the Web Services - IT
 
uniform resource locator
uniform resource locatoruniform resource locator
uniform resource locator
 
10863-2016
10863-201610863-2016
10863-2016
 
Creating xml publisher documents with people code
Creating xml publisher documents with people codeCreating xml publisher documents with people code
Creating xml publisher documents with people code
 
Understanding and Developing Web Services - For DBAs and Developers (whitepaper)
Understanding and Developing Web Services - For DBAs and Developers (whitepaper)Understanding and Developing Web Services - For DBAs and Developers (whitepaper)
Understanding and Developing Web Services - For DBAs and Developers (whitepaper)
 
ADO Controls - Database Usage from Exploring MS Visual Basic 6.0 Book
ADO Controls - Database Usage from Exploring MS Visual Basic 6.0 BookADO Controls - Database Usage from Exploring MS Visual Basic 6.0 Book
ADO Controls - Database Usage from Exploring MS Visual Basic 6.0 Book
 
Xml in bio medical field
Xml in bio medical fieldXml in bio medical field
Xml in bio medical field
 
Mail
MailMail
Mail
 

Viewers also liked

INTRODUCTION TO HTML
INTRODUCTION TO HTMLINTRODUCTION TO HTML
INTRODUCTION TO HTMLbwire sedrick
 
Getting Started With Php Frameworks @BCP5
Getting Started With Php Frameworks @BCP5Getting Started With Php Frameworks @BCP5
Getting Started With Php Frameworks @BCP5Amit Kumar Singh
 
Введение в веб-проектирование
Введение в веб-проектированиеВведение в веб-проектирование
Введение в веб-проектированиеMaryia Davidouskaia
 
Верстка_Лекция1
Верстка_Лекция1Верстка_Лекция1
Верстка_Лекция1itc73
 
Using Flexbox Today (Generate Sydney 2016)
Using Flexbox Today (Generate Sydney 2016)Using Flexbox Today (Generate Sydney 2016)
Using Flexbox Today (Generate Sydney 2016)Zoe Gillenwater
 
Bdd and dsl как способ построения коммуникации на проекте
Bdd and dsl как способ построения коммуникации на проектеBdd and dsl как способ построения коммуникации на проекте
Bdd and dsl как способ построения коммуникации на проектеISsoft
 
Таблицы Html
Таблицы HtmlТаблицы Html
Таблицы HtmlVasya Petrov
 
17. основы css (cascading style sheets)
17. основы css (cascading style sheets)17. основы css (cascading style sheets)
17. основы css (cascading style sheets)Sergei Dubrov
 
CSS Lessons Learned the Hard Way (ConvergeSE)
CSS Lessons Learned the Hard Way (ConvergeSE)CSS Lessons Learned the Hard Way (ConvergeSE)
CSS Lessons Learned the Hard Way (ConvergeSE)Zoe Gillenwater
 
FL Blog Con 2015: How To Find The Best WordPress Plugins For You
FL Blog Con 2015: How To Find The Best WordPress Plugins For YouFL Blog Con 2015: How To Find The Best WordPress Plugins For You
FL Blog Con 2015: How To Find The Best WordPress Plugins For YouAdam Soucie
 
Пингвины из калининграда
Пингвины из калининградаПингвины из калининграда
Пингвины из калининградаAndrew Yashenko
 
Joomla Request To Response
Joomla Request To ResponseJoomla Request To Response
Joomla Request To ResponseAmit Kumar Singh
 
решение основной проблемы Agile (scrum) проектов в контексте ba
решение основной проблемы Agile (scrum) проектов в контексте baрешение основной проблемы Agile (scrum) проектов в контексте ba
решение основной проблемы Agile (scrum) проектов в контексте baISsoft
 
WordPress as Rapid Prototyping Tool
WordPress as Rapid Prototyping ToolWordPress as Rapid Prototyping Tool
WordPress as Rapid Prototyping ToolAmit Kumar Singh
 
Organisation and navigation
Organisation and navigationOrganisation and navigation
Organisation and navigationLon Barfield
 
Css part2
Css part2Css part2
Css part2ISsoft
 
Show vs. Tell in UX Design (Front in Amsterdam)
Show vs. Tell in UX Design (Front in Amsterdam)Show vs. Tell in UX Design (Front in Amsterdam)
Show vs. Tell in UX Design (Front in Amsterdam)Zoe Gillenwater
 
Тестирование требований
Тестирование требованийТестирование требований
Тестирование требованийISsoft
 

Viewers also liked (20)

Html Tutor
Html TutorHtml Tutor
Html Tutor
 
INTRODUCTION TO HTML
INTRODUCTION TO HTMLINTRODUCTION TO HTML
INTRODUCTION TO HTML
 
Getting Started With Php Frameworks @BCP5
Getting Started With Php Frameworks @BCP5Getting Started With Php Frameworks @BCP5
Getting Started With Php Frameworks @BCP5
 
Введение в веб-проектирование
Введение в веб-проектированиеВведение в веб-проектирование
Введение в веб-проектирование
 
Верстка_Лекция1
Верстка_Лекция1Верстка_Лекция1
Верстка_Лекция1
 
Using Flexbox Today (Generate Sydney 2016)
Using Flexbox Today (Generate Sydney 2016)Using Flexbox Today (Generate Sydney 2016)
Using Flexbox Today (Generate Sydney 2016)
 
Bdd and dsl как способ построения коммуникации на проекте
Bdd and dsl как способ построения коммуникации на проектеBdd and dsl как способ построения коммуникации на проекте
Bdd and dsl как способ построения коммуникации на проекте
 
Таблицы Html
Таблицы HtmlТаблицы Html
Таблицы Html
 
17. основы css (cascading style sheets)
17. основы css (cascading style sheets)17. основы css (cascading style sheets)
17. основы css (cascading style sheets)
 
CSS Lessons Learned the Hard Way (ConvergeSE)
CSS Lessons Learned the Hard Way (ConvergeSE)CSS Lessons Learned the Hard Way (ConvergeSE)
CSS Lessons Learned the Hard Way (ConvergeSE)
 
FL Blog Con 2015: How To Find The Best WordPress Plugins For You
FL Blog Con 2015: How To Find The Best WordPress Plugins For YouFL Blog Con 2015: How To Find The Best WordPress Plugins For You
FL Blog Con 2015: How To Find The Best WordPress Plugins For You
 
Пингвины из калининграда
Пингвины из калининградаПингвины из калининграда
Пингвины из калининграда
 
How Joomla Works
How Joomla WorksHow Joomla Works
How Joomla Works
 
Joomla Request To Response
Joomla Request To ResponseJoomla Request To Response
Joomla Request To Response
 
решение основной проблемы Agile (scrum) проектов в контексте ba
решение основной проблемы Agile (scrum) проектов в контексте baрешение основной проблемы Agile (scrum) проектов в контексте ba
решение основной проблемы Agile (scrum) проектов в контексте ba
 
WordPress as Rapid Prototyping Tool
WordPress as Rapid Prototyping ToolWordPress as Rapid Prototyping Tool
WordPress as Rapid Prototyping Tool
 
Organisation and navigation
Organisation and navigationOrganisation and navigation
Organisation and navigation
 
Css part2
Css part2Css part2
Css part2
 
Show vs. Tell in UX Design (Front in Amsterdam)
Show vs. Tell in UX Design (Front in Amsterdam)Show vs. Tell in UX Design (Front in Amsterdam)
Show vs. Tell in UX Design (Front in Amsterdam)
 
Тестирование требований
Тестирование требованийТестирование требований
Тестирование требований
 

Similar to HTML (HyperText Markup Language)

SDP_-_Module_4.ppt
SDP_-_Module_4.pptSDP_-_Module_4.ppt
SDP_-_Module_4.pptssuser568d77
 
gdsc-html-ppt.pptx
gdsc-html-ppt.pptxgdsc-html-ppt.pptx
gdsc-html-ppt.pptxyuvakiran15
 
web unit 2_4338494_2023_08_14_23_11.pptx
web unit 2_4338494_2023_08_14_23_11.pptxweb unit 2_4338494_2023_08_14_23_11.pptx
web unit 2_4338494_2023_08_14_23_11.pptxChan24811
 
HTML introduction for beginners Slides .pptx
HTML introduction for beginners Slides .pptxHTML introduction for beginners Slides .pptx
HTML introduction for beginners Slides .pptxwewit44414
 
331592291-HTML-and-Cascading style sheet
331592291-HTML-and-Cascading style sheet331592291-HTML-and-Cascading style sheet
331592291-HTML-and-Cascading style sheetstephen972973
 
Introduction to web designing
Introduction to web designingIntroduction to web designing
Introduction to web designingRajat Shah
 
Web Development.pptx
Web Development.pptxWeb Development.pptx
Web Development.pptxRaghav271104
 
Unit 5 application layer
Unit 5 application layerUnit 5 application layer
Unit 5 application layerKritika Purohit
 
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvvLecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvvZahouAmel1
 
IT2255 Web Essentials - Unit II Web Designing
IT2255 Web Essentials - Unit II  Web DesigningIT2255 Web Essentials - Unit II  Web Designing
IT2255 Web Essentials - Unit II Web Designingpkaviya
 
Choice of programming language for web developing.
Choice of programming language for web developing.Choice of programming language for web developing.
Choice of programming language for web developing.Mohammad Kamrul Hasan
 

Similar to HTML (HyperText Markup Language) (20)

SDP_-_Module_4.ppt
SDP_-_Module_4.pptSDP_-_Module_4.ppt
SDP_-_Module_4.ppt
 
5. Frames & Forms.pdf
5. Frames & Forms.pdf5. Frames & Forms.pdf
5. Frames & Forms.pdf
 
gdsc-html-ppt.pptx
gdsc-html-ppt.pptxgdsc-html-ppt.pptx
gdsc-html-ppt.pptx
 
web unit 2_4338494_2023_08_14_23_11.pptx
web unit 2_4338494_2023_08_14_23_11.pptxweb unit 2_4338494_2023_08_14_23_11.pptx
web unit 2_4338494_2023_08_14_23_11.pptx
 
HTML introduction for beginners Slides .pptx
HTML introduction for beginners Slides .pptxHTML introduction for beginners Slides .pptx
HTML introduction for beginners Slides .pptx
 
331592291-HTML-and-Cascading style sheet
331592291-HTML-and-Cascading style sheet331592291-HTML-and-Cascading style sheet
331592291-HTML-and-Cascading style sheet
 
HTML
HTMLHTML
HTML
 
CSS_Forms.pdf
CSS_Forms.pdfCSS_Forms.pdf
CSS_Forms.pdf
 
Web(chap2)
Web(chap2)Web(chap2)
Web(chap2)
 
mst_unit1.pptx
mst_unit1.pptxmst_unit1.pptx
mst_unit1.pptx
 
Unit 2
Unit 2 Unit 2
Unit 2
 
Introduction to web designing
Introduction to web designingIntroduction to web designing
Introduction to web designing
 
Unit 2
Unit 2 Unit 2
Unit 2
 
DHTML
DHTMLDHTML
DHTML
 
Web Development.pptx
Web Development.pptxWeb Development.pptx
Web Development.pptx
 
Unit 5 application layer
Unit 5 application layerUnit 5 application layer
Unit 5 application layer
 
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvvLecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
Lecture 2 HTML part 1.pptxLecture 10 CSS part 2.pptxvvvvvvvvvvvvvv
 
Html Tutorial
Html TutorialHtml Tutorial
Html Tutorial
 
IT2255 Web Essentials - Unit II Web Designing
IT2255 Web Essentials - Unit II  Web DesigningIT2255 Web Essentials - Unit II  Web Designing
IT2255 Web Essentials - Unit II Web Designing
 
Choice of programming language for web developing.
Choice of programming language for web developing.Choice of programming language for web developing.
Choice of programming language for web developing.
 

More from Amber Bhaumik

Promising futures for new Engineers
Promising futures for new EngineersPromising futures for new Engineers
Promising futures for new EngineersAmber Bhaumik
 
5 Scientific Ways to Instantly Brighten Your Day
5 Scientific Ways to Instantly Brighten Your Day5 Scientific Ways to Instantly Brighten Your Day
5 Scientific Ways to Instantly Brighten Your DayAmber Bhaumik
 
The Flame In My Heart... Ignite!!
The Flame In My Heart... Ignite!!The Flame In My Heart... Ignite!!
The Flame In My Heart... Ignite!!Amber Bhaumik
 
11 Things To NEVER Say In A Presentation
11 Things To NEVER Say In A Presentation11 Things To NEVER Say In A Presentation
11 Things To NEVER Say In A PresentationAmber Bhaumik
 
Your Mobile Future: 5 Mobile Breakthroughs That Will Change Marketing
Your Mobile Future: 5 Mobile Breakthroughs That Will Change MarketingYour Mobile Future: 5 Mobile Breakthroughs That Will Change Marketing
Your Mobile Future: 5 Mobile Breakthroughs That Will Change MarketingAmber Bhaumik
 
Indian Constitution and Political Communication
Indian Constitution and Political CommunicationIndian Constitution and Political Communication
Indian Constitution and Political CommunicationAmber Bhaumik
 
How are Cyclones named?
How are Cyclones named?How are Cyclones named?
How are Cyclones named?Amber Bhaumik
 
A Glimpse of Indian Jugaad Technology
A Glimpse of Indian Jugaad TechnologyA Glimpse of Indian Jugaad Technology
A Glimpse of Indian Jugaad TechnologyAmber Bhaumik
 
Tips & tricks for Quantitative Aptitude
Tips & tricks for Quantitative AptitudeTips & tricks for Quantitative Aptitude
Tips & tricks for Quantitative AptitudeAmber Bhaumik
 
Tips & Tricks for Analytical Reasoning
Tips & Tricks for Analytical ReasoningTips & Tricks for Analytical Reasoning
Tips & Tricks for Analytical ReasoningAmber Bhaumik
 
Dengue Prevention - What you need to know…
Dengue Prevention - What you need to know…Dengue Prevention - What you need to know…
Dengue Prevention - What you need to know…Amber Bhaumik
 
Inspire THE CHEF IN YOU - Samsung Microwave Oven Cookbook
Inspire  THE  CHEF IN  YOU - Samsung  Microwave  Oven  CookbookInspire  THE  CHEF IN  YOU - Samsung  Microwave  Oven  Cookbook
Inspire THE CHEF IN YOU - Samsung Microwave Oven CookbookAmber Bhaumik
 
How to create SLIDES that rock (Presentation Tips)
How to create SLIDES that rock (Presentation Tips)How to create SLIDES that rock (Presentation Tips)
How to create SLIDES that rock (Presentation Tips)Amber Bhaumik
 
Bharat Electronics Limited (BEL) : Training Report
Bharat Electronics Limited (BEL) : Training ReportBharat Electronics Limited (BEL) : Training Report
Bharat Electronics Limited (BEL) : Training ReportAmber Bhaumik
 
Poverty: What does it feel like to be poor?
Poverty: What does it feel like to be poor?Poverty: What does it feel like to be poor?
Poverty: What does it feel like to be poor?Amber Bhaumik
 
Manufacturing Practice - Lab Manual - B.Tech. - Mechanical Engineering
Manufacturing Practice - Lab Manual - B.Tech. - Mechanical EngineeringManufacturing Practice - Lab Manual - B.Tech. - Mechanical Engineering
Manufacturing Practice - Lab Manual - B.Tech. - Mechanical EngineeringAmber Bhaumik
 
Introduction to Information Technology (IT)
Introduction to Information Technology (IT)Introduction to Information Technology (IT)
Introduction to Information Technology (IT)Amber Bhaumik
 
Introduction to Internet
Introduction to InternetIntroduction to Internet
Introduction to InternetAmber Bhaumik
 

More from Amber Bhaumik (20)

Promising futures for new Engineers
Promising futures for new EngineersPromising futures for new Engineers
Promising futures for new Engineers
 
5 Scientific Ways to Instantly Brighten Your Day
5 Scientific Ways to Instantly Brighten Your Day5 Scientific Ways to Instantly Brighten Your Day
5 Scientific Ways to Instantly Brighten Your Day
 
The Flame In My Heart... Ignite!!
The Flame In My Heart... Ignite!!The Flame In My Heart... Ignite!!
The Flame In My Heart... Ignite!!
 
11 Things To NEVER Say In A Presentation
11 Things To NEVER Say In A Presentation11 Things To NEVER Say In A Presentation
11 Things To NEVER Say In A Presentation
 
Your Mobile Future: 5 Mobile Breakthroughs That Will Change Marketing
Your Mobile Future: 5 Mobile Breakthroughs That Will Change MarketingYour Mobile Future: 5 Mobile Breakthroughs That Will Change Marketing
Your Mobile Future: 5 Mobile Breakthroughs That Will Change Marketing
 
Indian Constitution and Political Communication
Indian Constitution and Political CommunicationIndian Constitution and Political Communication
Indian Constitution and Political Communication
 
Indian Constitution
Indian ConstitutionIndian Constitution
Indian Constitution
 
Those 20 Minutes !
Those 20 Minutes !Those 20 Minutes !
Those 20 Minutes !
 
How are Cyclones named?
How are Cyclones named?How are Cyclones named?
How are Cyclones named?
 
A Glimpse of Indian Jugaad Technology
A Glimpse of Indian Jugaad TechnologyA Glimpse of Indian Jugaad Technology
A Glimpse of Indian Jugaad Technology
 
Tips & tricks for Quantitative Aptitude
Tips & tricks for Quantitative AptitudeTips & tricks for Quantitative Aptitude
Tips & tricks for Quantitative Aptitude
 
Tips & Tricks for Analytical Reasoning
Tips & Tricks for Analytical ReasoningTips & Tricks for Analytical Reasoning
Tips & Tricks for Analytical Reasoning
 
Dengue Prevention - What you need to know…
Dengue Prevention - What you need to know…Dengue Prevention - What you need to know…
Dengue Prevention - What you need to know…
 
Inspire THE CHEF IN YOU - Samsung Microwave Oven Cookbook
Inspire  THE  CHEF IN  YOU - Samsung  Microwave  Oven  CookbookInspire  THE  CHEF IN  YOU - Samsung  Microwave  Oven  Cookbook
Inspire THE CHEF IN YOU - Samsung Microwave Oven Cookbook
 
How to create SLIDES that rock (Presentation Tips)
How to create SLIDES that rock (Presentation Tips)How to create SLIDES that rock (Presentation Tips)
How to create SLIDES that rock (Presentation Tips)
 
Bharat Electronics Limited (BEL) : Training Report
Bharat Electronics Limited (BEL) : Training ReportBharat Electronics Limited (BEL) : Training Report
Bharat Electronics Limited (BEL) : Training Report
 
Poverty: What does it feel like to be poor?
Poverty: What does it feel like to be poor?Poverty: What does it feel like to be poor?
Poverty: What does it feel like to be poor?
 
Manufacturing Practice - Lab Manual - B.Tech. - Mechanical Engineering
Manufacturing Practice - Lab Manual - B.Tech. - Mechanical EngineeringManufacturing Practice - Lab Manual - B.Tech. - Mechanical Engineering
Manufacturing Practice - Lab Manual - B.Tech. - Mechanical Engineering
 
Introduction to Information Technology (IT)
Introduction to Information Technology (IT)Introduction to Information Technology (IT)
Introduction to Information Technology (IT)
 
Introduction to Internet
Introduction to InternetIntroduction to Internet
Introduction to Internet
 

Recently uploaded

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
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
"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
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxLoriGlavin3
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rick Flair
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxLoriGlavin3
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
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
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
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
 
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
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
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
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 

Recently uploaded (20)

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
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
"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
 
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptxThe Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
The Fit for Passkeys for Employee and Consumer Sign-ins: FIDO Paris Seminar.pptx
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 
Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...Rise of the Machines: Known As Drones...
Rise of the Machines: Known As Drones...
 
The State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptxThe State of Passkeys with FIDO Alliance.pptx
The State of Passkeys with FIDO Alliance.pptx
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
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
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
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
 
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
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
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)
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 

HTML (HyperText Markup Language)

  • 2. • HTML is a document-layout and hyperlinkspecification language. It defines the syntax and placement of special, embedded directions that aren't displayed by the browser, but tell it how to display the contents of the document, including text, images, and other support media. The language also tells you how to make a document interactive through special hypertext links, which connect your document with other documents - on either your computer or someone else's, as well as with other Internet resources, like FTP
  • 3.
  • 4.
  • 6.
  • 7.
  • 8.
  • 9. The output looks like: UIUC University of Illinois at Urbana-Champaign is one of three campuses of the University of Illinois system UIC University of Illinois at Chicago is another campus UIS University of Illinois at Springfield is the newest campus in the system The <DT> and <DD> entries can contain multiple paragraphs (indicated by <P> paragraph tags), lists, or other definition information.
  • 10. Nested Lists Lists can be nested. You can also have a number of paragraphs, each containing a nested list, in a single list item. Here is a sample nested list: <UL> <LI> A few New England states: <UL> <LI> Vermont <LI> New Hampshire <LI> Maine </UL> <LI> Two Midwestern states: <UL> <LI> Michigan <LI> Indiana </UL> </UL>
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26. Image Maps Understanding How Image Maps Work Creating an image map involves three steps: creating the graphic, mapping the graphic for hot zones, and placing the correct information (along with the correct programs) on the Web server itself.. The Map Server Program When a user clicks an image map on a Web page, the browser determines the coordinates of the graphic (in pixels) that describe where the user clicked. The browser then passes these numbers to the map server program, along with the name of the file that contains the URLs that correspond to coordinates Defining Your Image Map Hot Zones As a designer, you are responsible for doing two things in the hot zone definition process. First, you need to define the hot zones to create the image map-that is, you need to decide what URL the coordinates will correspond to when the image map is clicked. Second, you need to create the map definition file that makes the hot zone information available to the Web server these coordinates.
  • 27. <html><head></head><body> <map name=“ab” > <area shape=“circ” coords=“200,300,100” href=“a1.html” /> <area shape=“rect” coords=“300,400,200,100” href=“a2.html” /> </map> <img src=“a1.gif” usemap=“#ab” /> </body> </html>
  • 28. Forms • • • • • An HTML form is part of a web page that includes area where readers can enter information to be sent back to you, the publisher of the web page. Creating a form Every form begins with a form tag that can be located anywhere in body of HTM document. The form tag has two main attributes: method: This attrbute can take two values: get and post. Post means to send the form entries as a document. Get submits the results as a part of URL header in the form of result query which is in the form of name-value pairs separated by & action: action attribute specifies the address to which to send the form data. The address can take two values: – Location of form processing script on a web server – mailto: followed by your email address. • • • • • • Various fields or elements of a form Textfield-one line text boxes Syntax: <input type=text name=“txt1” value=“” size=3 maxlength=5 /> Radio button- used when we want the user to select one of a limited number of choices. Syntax: <input type=“radio” name=“rd1” value=“male” />Male The name remains same for all radio buttons but value varies with the label it is representing.
  • 29. • Checkboxes- checkboxes are used when we want the user to select more than one choice • Syntax: <input type=“checkbox” name=“chk1” value=“MCA” checked />MCA • When the form is submitted the values are submitted to server as name value pairs • Action buttons on form- Action buttons are special buttons that are included in form for submitting the form’s entries to server, for resetting the entries of the form and for initiating various events using language like javascript • Submit button- The submit button submits the entries of forms to the server • Syntax: <input type=“submit” name=“bt1” value=“submit” /> • Reset button- To reset or refill the form • Syntax: <input type=“reset” name=“bt2” value=“reset” /> • Custom image button- To include an image as a button in form • Syntax: <input type=image src=“a.gif” name=“bt3” align=“top” />
  • 30. • • • • • • • • • • • • • Push buttons: Syntax :<input type=“button” name=“bt4” value=“abc” /> Hidden fields: to pass some hidden values Syntax:<input type=“hidden” name=“txt4” value=“” /> Textarea- Used for entering more than one line text( multiline text entry) Syntax: <textarea name=“” cols=“2” rows=“4”></textarea> Multichoice elements: used for drawing pulldown menus Syntax: <select name=“s1” multiple> <option value=“ ”> </option> <option value=“ “></option> </select> By default all options of select tag are unselected <option selected></option>
  • 31. • Labels: The label tag is used to define the relationships between a form control such as a text input field and one or more text labels • <label>Name</label> • Password field: The password field is used to get password inputs from the user • <input type=“password” name=“ps” value=“” />
  • 32. Frames A frame is a rectangular region within the browser window that displays a web page alongside other pages in other frames To create frames in a web page, a special kind of document is created called the frameset document. A frameset document is an HTML page that instructs the web browser to split its window into multiple frames and specifies which web page should be displayed in each frame. The frameset document does not contain a body tag. No tags that can be contained in a body tag can be written in a frameset tag. The frameset tag has two attributes : rows and cols rows: This attribute is used for creating horizontal frames. The height of frames is specified in pixels, percentage or as a proportion of the remaining space by using “*”. cols: This attribute is used for vertical frames and widths are specified as comma delimited list of sizes in pixels , percentage or proportion of remaining space by using “*”
  • 33. • Frame Tag • Within the frameset tag, frame tag is included indicating the HTML document to be displayed in the frame. Frame tag has an attribute: • src: which gets the address of web page to be loaded in that frame • name: indicating the name of the frame. The name property is used to set the value of target property of anchor tag. The target property of the anchor tag can be: • _blank- loads link in the new unnamed window • _top-loads the link in entire browser window • _parent-loads the link over the parent frame if current frame is nested within other frames • _self- loads link into current frame replacing the document now being displayed in this frame. This is by default.
  • 34. • Nested frames- By nesting one frameset within another, one can create rather complex frame layouts • <html><head></head> • <frameset rows=“43,*,43” > • <frameset cols=“43,*,43” > • <frame src=“a.html” /> • <frame src=“b.html” /> • <frame src=“c.html” /> • </frameset> • <frameset cols=“43,*,43” > • <frame src=“d.html” /> • <frame src=“e.html” /> • <frame src=“f.html” /> • </frameset>
  • 35. • • • • • • <frameset cols=“43,*,43” > <frame src=“g.html” /> <frame src=“h.html” /> <frame src=“k.html” /> </frameset> </frameset></html>
  • 36. • • • • • Other attributes taken by frameset tag are: Framespacing- specifies the spacing between the frames. Border-size in pixels Frameborder- to specify whether the frames contain the border or not. Takes value 1 or 0 for true or false respectively. Other attributes of frame tag are: Scrolling- display scroll bar or not . Gets the value yes or no Noresize-don’t allow this frame to be resized.