SlideShare une entreprise Scribd logo
1  sur  21
Télécharger pour lire hors ligne
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Topic: HTML Common Tags
(Images, Lists, Tables, Forms, Frames)
Subject name: Web Technology
Year/Section: III CSE - A
Dr. Vikram Neerugatti
Associate Professor
Department of CSE
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
✓ Introduction
✓ Basic Tags
✓ Images
✓ Links
✓ Lists
✓ Tables
✓ Forms
✓ Frames
Content
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
✓ HTML is the standard markup language for Web pages.
✓ With HTML you can create your own Website.
✓ HTML stands for Hyper Text Markup Language
✓ HTML describes the structure of a Web page
✓ HTML consists of a series of elements
✓ Browser will read the elements
✓ Elements are such as html, body, title, head, etc.
✓ An HTML element is defined by a start tag, some content,
and an end tag.
✓ <h1>My First Heading</h1>
HTML Introduction
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
HTML History
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Basic Tags
✓ The <!DOCTYPE html> declaration
defines that this document is an HTML5
document
✓ The <html> is the root element of an
HTML page
✓ The <head> contains meta information
about the HTML page
✓ The <title> element specifies a title for
the HTML page
✓ The <body> element defines the
document's body, and is a container for
all the visible contents, such as
headings, paragraphs, images,
hyperlinks, tables, lists, etc.
✓ The <h1> element defines a large
heading
✓ The <p> element defines a paragraph
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Basic Tags-Execution-Hands on-Editor
✓Create one folder
✓Put all files in that folder
✓Note pad
✓Save as .html
✓Go to specific folder and
open in any browser
✓Check the output
✓Do changes
✓Refresh the page
✓Repeat above steps
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Basic Tags-demonstration-usage
✓ The <!DOCTYPE html> declaration
defines that this document is an HTML5
document
✓ The <html> is the root element of an
HTML page
✓ The <head> contains meta information
about the HTML page
✓ The <title> element specifies a title for
the HTML page
✓ The <body> element defines the
document's body, and is a container for
all the visible contents, such as
headings, paragraphs, images,
hyperlinks, tables, lists, etc.
✓ The <h1> element defines a large
heading
✓ The <p> element defines a paragraph
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
✓ HTML images are defined with the <img> tag.
✓ The source file (src), width, and height are provided as
attributes
✓ Example
✓ <img src="F:workAudi
SankaraSANKWTlogo.png" width = "100" height
= "100">
Images
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
✓ HTML Links are defined with the <a> tag.
✓ Example
✓ <a href =
"https://www.youtube.com/watch?v=2jU81EnE6qQ"
>machine learning</a>
Links
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
✓ HTML lists allow web developers to group a set of related
items in lists.
✓ Two types
✓ Ordered
✓ Un-Ordered
Lists
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
✓ Ordered
✓ An ordered list starts with the <ol> tag. Each list item
starts with the <li> tag.
✓ The list items will be marked with numbers by
default
Ordered Lists
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
✓ Un-Ordered
✓ An unordered list starts with the <ul> tag. Each
list item starts with the <li> tag.
✓ The list items will be marked with bullets (small
black circles) by default
✓ <ul type=“square">
Un-Ordered Lists
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
✓ HTML tables allow web
developers to arrange data into
rows and columns.
✓ Consists of cells where we store
data. Will use the tags <table>,
<tr>, <td> and <th>.
✓ Style attribute- table border
Tables
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
✓ An HTML form is used to collect user input.
✓ The user input is most often sent to a server/database/cloud
for processing.
✓ The element <form> is used to create a form.
Forms
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Forms Examples
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Forms Examples
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
✓ HTML frames are used to divide your browser window into
multiple sections.
✓ Where each section can load a separate HTML document.
✓ A collection of frames in the browser window is known as a
frameset.
✓ The window is divided into frames in a similar way the
tables are organized: into rows and columns.
✓ The element <frameset> is used to create a form.
Frames
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Frames Example
<html>
<frameset rows = "20%,80%">
<frame src = "nani.html">
<frameset cols = "20%,60%,20%">
<frame src = "nani.html">
<frame src = "nani.html">
<frame src = "nani.html">
</frameset>
</frameset>
</html>
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
✓ Introduction
✓ Basic Tags
✓ Images
✓ Links
✓ Lists
✓ Tables
✓ Forms
✓ Frames
Summary
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Any Doubts/clarification/Questions
Audisankara
College
of
Engineering
and
Technology(A)::Gudur,AP.
Department of CSE
Thank you all

Contenu connexe

Tendances

Html project
Html projectHtml project
Html project
arsh7511
 

Tendances (20)

HTML
HTMLHTML
HTML
 
HTML: Tables and Forms
HTML: Tables and FormsHTML: Tables and Forms
HTML: Tables and Forms
 
Presentation of bootstrap
Presentation of bootstrapPresentation of bootstrap
Presentation of bootstrap
 
CSS for Beginners
CSS for BeginnersCSS for Beginners
CSS for Beginners
 
Chapter 8: Tables
Chapter 8: TablesChapter 8: Tables
Chapter 8: Tables
 
Html project
Html projectHtml project
Html project
 
Bootstrap 3
Bootstrap 3Bootstrap 3
Bootstrap 3
 
Cascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) helpCascading Style Sheets (CSS) help
Cascading Style Sheets (CSS) help
 
How Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) WorksHow Cascading Style Sheets (CSS) Works
How Cascading Style Sheets (CSS) Works
 
Html
HtmlHtml
Html
 
Introduction to HTML and CSS
Introduction to HTML and CSSIntroduction to HTML and CSS
Introduction to HTML and CSS
 
Presentation on html, css
Presentation on html, cssPresentation on html, css
Presentation on html, css
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Transforming xml with XSLT
Transforming  xml with XSLTTransforming  xml with XSLT
Transforming xml with XSLT
 
How to learn HTML in 10 Days
How to learn HTML in 10 DaysHow to learn HTML in 10 Days
How to learn HTML in 10 Days
 
Html Slide Part-1
Html Slide Part-1Html Slide Part-1
Html Slide Part-1
 
Html ppt
Html pptHtml ppt
Html ppt
 
(Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS (Fast) Introduction to HTML & CSS
(Fast) Introduction to HTML & CSS
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Introduction to HTML5
Introduction to HTML5Introduction to HTML5
Introduction to HTML5
 

Similaire à HTML Common Tags -1

Hypertext markup language(html)
Hypertext markup language(html)Hypertext markup language(html)
Hypertext markup language(html)
Jayson Cortez
 
web development.pdf
web development.pdfweb development.pdf
web development.pdf
BagHarki
 

Similaire à HTML Common Tags -1 (20)

Cascading Style Sheets
Cascading Style SheetsCascading Style Sheets
Cascading Style Sheets
 
HTML, CSS and XML
HTML, CSS and XMLHTML, CSS and XML
HTML, CSS and XML
 
HTML practical file
HTML practical fileHTML practical file
HTML practical file
 
HTML (Basic to Advance)
HTML (Basic to Advance)HTML (Basic to Advance)
HTML (Basic to Advance)
 
Project 02 Creating and Editing a Web Page - Notes
Project 02 Creating and Editing a Web Page - NotesProject 02 Creating and Editing a Web Page - Notes
Project 02 Creating and Editing a Web Page - Notes
 
Html 5
Html 5Html 5
Html 5
 
Web Page Designing
Web Page DesigningWeb Page Designing
Web Page Designing
 
Hypertext markup language(html)
Hypertext markup language(html)Hypertext markup language(html)
Hypertext markup language(html)
 
Html basic
Html basicHtml basic
Html basic
 
HTML Foundations, pt 2
HTML Foundations, pt 2HTML Foundations, pt 2
HTML Foundations, pt 2
 
uptu web technology unit 2 html
uptu web technology unit 2 htmluptu web technology unit 2 html
uptu web technology unit 2 html
 
Html tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.comHtml tutorials by www.dmdiploma.com
Html tutorials by www.dmdiploma.com
 
Web designing
Web designingWeb designing
Web designing
 
WEB DESIGNING.pdf
WEB DESIGNING.pdfWEB DESIGNING.pdf
WEB DESIGNING.pdf
 
XHTML and CSS
XHTML and CSS XHTML and CSS
XHTML and CSS
 
HTML-Part1
HTML-Part1HTML-Part1
HTML-Part1
 
INTERNSHIP PROJECT PPT RAJ HZL.pdf
INTERNSHIP PROJECT PPT RAJ HZL.pdfINTERNSHIP PROJECT PPT RAJ HZL.pdf
INTERNSHIP PROJECT PPT RAJ HZL.pdf
 
SEO Training in Noida- Skyinfotech.in
SEO Training in Noida- Skyinfotech.inSEO Training in Noida- Skyinfotech.in
SEO Training in Noida- Skyinfotech.in
 
web development.pdf
web development.pdfweb development.pdf
web development.pdf
 
Advance HTML
Advance HTMLAdvance HTML
Advance HTML
 

Plus de Vikram Nandini

Plus de Vikram Nandini (20)

IoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold BarIoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold Bar
 
Design Patterns
Design PatternsDesign Patterns
Design Patterns
 
Linux File Trees and Commands
Linux File Trees and CommandsLinux File Trees and Commands
Linux File Trees and Commands
 
Introduction to Linux & Basic Commands
Introduction to Linux & Basic CommandsIntroduction to Linux & Basic Commands
Introduction to Linux & Basic Commands
 
INTRODUCTION to OOAD
INTRODUCTION to OOADINTRODUCTION to OOAD
INTRODUCTION to OOAD
 
Ethics
EthicsEthics
Ethics
 
Manufacturing - II Part
Manufacturing - II PartManufacturing - II Part
Manufacturing - II Part
 
Manufacturing
ManufacturingManufacturing
Manufacturing
 
Business Models
Business ModelsBusiness Models
Business Models
 
Prototyping Online Components
Prototyping Online ComponentsPrototyping Online Components
Prototyping Online Components
 
Artificial Neural Networks
Artificial Neural NetworksArtificial Neural Networks
Artificial Neural Networks
 
IoT-Prototyping
IoT-PrototypingIoT-Prototyping
IoT-Prototyping
 
Design Principles for Connected Devices
Design Principles for Connected DevicesDesign Principles for Connected Devices
Design Principles for Connected Devices
 
Introduction to IoT
Introduction to IoTIntroduction to IoT
Introduction to IoT
 
Embedded decices
Embedded decicesEmbedded decices
Embedded decices
 
Communication in the IoT
Communication in the IoTCommunication in the IoT
Communication in the IoT
 
Introduction to Cyber Security
Introduction to Cyber SecurityIntroduction to Cyber Security
Introduction to Cyber Security
 
cloud computing UNIT-2.pdf
cloud computing UNIT-2.pdfcloud computing UNIT-2.pdf
cloud computing UNIT-2.pdf
 
Introduction to Web Technologies
Introduction to Web TechnologiesIntroduction to Web Technologies
Introduction to Web Technologies
 
Basics of Java Script
Basics of Java ScriptBasics of Java Script
Basics of Java Script
 

Dernier

Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
MateoGardella
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
SanaAli374401
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
ciinovamais
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 

Dernier (20)

Gardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch LetterGardella_PRCampaignConclusion Pitch Letter
Gardella_PRCampaignConclusion Pitch Letter
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
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
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
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
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 

HTML Common Tags -1