SlideShare a Scribd company logo
Welcome to all
HTML Introduction
HTML :
 HTML stands for Hyper Text Markup Language
 HTML is not a programming language, it is a markup
language
 A markup language is a set of markup tags
 HTML uses markup tags to describe web pages
 Html is platform independent language
What is CSS?
 What is CSS?
CSS stands for Cascading Style Sheets
Styles define how to display HTML elements
Styles were added to HTML 4.0 to solve a problem
What is JavaScript?
What is JavaScript?
 JavaScript was designed to add interactivity to HTML
pages .
DHTML
 DHTML is NOT a language.
 DHTML is a TERM describing the art of making
dynamic and interactive web pages.
 DHTML combines HTML, JavaScript, the HTML
DOM, and CSS.
Session 1
 What is web page?
The basic unit of information displayed over the net is a
web page .
What is web site ?
It is a collection of web pages .
 URI : uniform resources Identifier
 Home page
 Communication b/w server and a browsers
 Feature
3 kind of network
 LAN : local area network
 WAN : wide area network
 MAN: metropolitan area network
Types of webpage
 Static web pages
 Dynamic web pages
Structure of Html
<!DOCTYPE html>
<html>
<head>
<title>my html</title>
</head>
<body>
Welcome to html
</body>
</html>
Attributes & Tags
 < body bgcolor=“red”>
bgcolor=attributes , red= values
 Tags helps to add picture , movies, heading
etc
Ex : <h1> ……………….. </h1>
Basic tags elements in html
 Paragraph: <p> </p>
 break: <br> or <br/>
 Heading : H1,H2,H3,H4,H5,H6
 HR: <hr>
<hr color=“red” width=“75%” size=“4”>
 Pre: <pre></pre> (space)
 Center:<center> </center>
Basic text elements in html
 Superscript:<sup> </sup>
 Subscript :<sub> </sub>
 Bold :<b> </b>
 I :<i> </i>
 u :<u> </u>
 Big :<big> </big>
 Small :<small> </small>
 Strike :<strike> </strike>
Basic text elements in html
 Delete :<del> </del>
 Insert :<ins> </ins>
 Strong :< Strong > < /Strong >
 Color text : 2 ways :
<font size color face> </font>
or
<p style=“color: green;font-size:8;”> </p>
(inline css)
Basic text elements in html
 Marquee :<marquee> </marquee>
 Acronym :< Acronym title=“meaning”></ Acronym
title>
 Cite (meaning):Reference
<cite>google.com</cite>
 Divided :<div> </div>
 Marquee bgcolor=“red”
 < Marquee> <span style=“background- color:
red”>html</span></marquee>
Basic text elements in html
 <marquee direction =“right” scrollamount=“30”>
 <marquee behavior="alternate">
 Image
<img src=“moon.jpg”/>
<img src="sunset.gif" />
< img src=“moon.jpg” width=“50” height=“200” alt=“it is
a moon”/>
 Alter : alt=“united nation org”
HTML Quotation
Tag Description
<abbr> Defines an abbreviation or acronym
<address> Defines contact information for the author/owner of a document
<bdo> Defines the text direction
<blockquote> Defines a section that is quoted from another source
<cite> Defines the title of a work
<q> Defines a short inline quotation
<mark> For highlight
HTML Computer Code Elements
Tag Description
<code> Defines programming code
<kbd> Defines keyboard input
<samp> Defines computer output
<var> Defines a variable
<pre> Defines preformatted text
List
 3 types :
 Unordered list
 Ordered list
 Definition list
Unordered list : type="square" type="disc"
type="circle"
<h4 align="center">Shopping List</h4>
<ul > <li>Milk</li>
<li>chocolate</li>
<li>Cereal</li>
<li>Bread</li> </ul>
list
 Ordered list
<h4 align="center">Goals</h4>
<ol>
<li>Find a Job</li>
<li>Get Money</li>
<li>Move Out</li> </ol>
Lower-Case Letters, Upper-Case Letters ,Lower-
Case Numerals ,Upper-Case Numerals,
Roman-letters
Definition list
<dl>
<dt><b>Fromage</b></dt>
<dd>French word for cheese.</dd>
<dt><b>Voiture</b></dt>
<dd>French word for car.</dd> </dl>
Fromage
French word for cheese.
Voiture
French word for car.
 <dl> - defines the start of the list
 <dt> - definition term
 <dd> - defining definition
Tables
 <table border="1">
<tr><td>Row 1 Cell 1</td>
<td>Row 1 Cell 2</td></tr>
<tr><td>Row 2 Cell 1</td>
<td>Row 2 Cell 2</td></tr> </table>
Tables
 <table border="1">
 <tr> <th>Column 1</th>
<th>Column 2</th>
<th>Column 3</th> </tr>
<tr> <td rowspan="2">Row 1 Cell 1</td> <td>Row 1 Cell
2</td><td>Row 1 Cell 3</td></tr> <tr><td>Row 2 Cell
2</td><td>Row 2 Cell 3</td></tr> <tr><td
colspan="3">Row 3 Cell 1</td></tr> </table>
Cell Padding and Spacing
 Cell Padding and Spacing
 With the cell padding and cell spacing attributes you
will be able to adjust the white space on your tables.
Spacing defines the space between two cells , while
padding represents the distance between cell borders
and the content of a cell. Color has been added to the
table to emphasize these attributes.
Table
 <table border="1" cellspacing="10"
bgcolor="rgb(0,255,0)">
<tr> <th>Column 1</th>
<th>Column 2</th> </tr>
<tr><td>Row 1 Cell 1</td>
<td>Row 1 Cell 2</td></tr>
<tr><td>Row 2 Cell 1</td>
<td>Row 2 Cell 2</td></tr> </table>
Tables
<table border="1" cellpadding="10"
bgcolor="rgb(0,255,0)">
<tr> <th>Column 1</th> <th>Column 2</th> </tr>
<tr><td>Row 1 Cell 1</td><td>Row 1 Cell 2</td></tr>
<tr><td>Row 2 Cell 1</td><td>Row 2 Cell 2</td></tr>
</table>
link
 <a href="2.html">click here</A>
 <a href="2.html“ target=“_blank”>click here</A>
 <A
HREF="MAILTO:MAHESH@GMAIL.COM">FEEDBA
CK</A>
 <A HREF="3.HTML">
<IMG SRC="images2.jpeg"></a>
 <a href="http://www.google.co.in/">google</a>
HTML Comment Tags
Comment tags <!-- and --> are used to insert comments
in HTML.
Ex:
<!-- This is a comment -->
<p>This is a paragraph.</p>
<!-- Remember to add more information here -->
Form: HTML web forms are a composition of buttons, checkboxes, and text input fields embedded
inside of HTML documents with one goal in mind: to capture user input. By doing things such as
providing fields for user data such as names, phone number, and email addresses, web forms give
users the opportunity to interact directly with a webpage.
 <html>
<body>
<form><caption><center>APPLICATION
FORM</center></caption>
First Name:</td><td><input type="text" maxlength="15"
size="30" value="john">
Last Name:</td><td><input type="text" maxlength="15"
size="30" value="Ford">
form
Gender:</td><td><input type="radio" name="gender"
value="male">M
<input type="radio" name="gender"
value="female" checked>f
Education:<input type="checkbox"
name="ug">ug
<input type="checkbox"
name="pg">pg<br><br>
Password:<input type="password"
maxlength="10" size="30"><br><br>
form
Country:
<select name="country">
<option> choose</option>
<option>India</option>
<option>England</option>
<option>Sri lanka</option>
</select><br><br>
Feedback:<textarea rows="5" cols="20">
</textarea>
<input type="submit" value="submit">
<input type="reset" value="reset">
Frame(With frames, several Web pages can
be displayed in the same browser window.
<html>
<frameset cols="25%,50%,25%">
<frame src="a.html" />
<frame src="b.html" />
<frame src=“c.html" />
</frameset>
</html>
frame
<html>
<frameset rows="25%,50%,25%">
<frame src="frame_a.htm" />
<frame src="frame_b.htm" />
<frame src="frame_c.htm" />
</frameset>
</html>
Nested framesets
<html>
<frameset rows="50%,50%">
<frame src="frame_a.html" />
<frameset cols="25%,75%">
<frame src="frame_b.html" />
<frame src="frame_c.html" />
</frameset>
</frameset>
</html>
Iframe: An iframe is used to display a web page
within a web page.
<iframe src="oline.html" width="350"
height="150" scrolling="auto"
frameborder ="1">
</iframe>
<The End>
Ad

More Related Content

Similar to Web development ppt used to design web applocation (20)

Html
HtmlHtml
Html
Nisa Soomro
 
HTML
HTMLHTML
HTML
Doeun KOCH
 
Html
HtmlHtml
Html
baabtra.com - No. 1 supplier of quality freshers
 
belajar HTML 3
belajar HTML 3belajar HTML 3
belajar HTML 3
Universitas Pendidikan Indonesia
 
HTML 4.0
HTML 4.0HTML 4.0
HTML 4.0
Mohamed Elabnody
 
HTML
HTMLHTML
HTML
Shaza Abd Alwahab
 
Internet and Web Technology (CLASS-3) [HTML & CSS]
Internet and Web Technology (CLASS-3) [HTML & CSS] Internet and Web Technology (CLASS-3) [HTML & CSS]
Internet and Web Technology (CLASS-3) [HTML & CSS]
Ayes Chinmay
 
Caracteristicas Basicas De Htlm
Caracteristicas Basicas De HtlmCaracteristicas Basicas De Htlm
Caracteristicas Basicas De Htlm
Maria S Rivera
 
Html 5
Html 5Html 5
Html 5
DanellaPatrick
 
Html ppt
Html pptHtml ppt
Html ppt
sanjay joshi
 
Html presentation
Html presentationHtml presentation
Html presentation
Prashanthi Mamidisetty
 
Web Developement Workshop (Oct 2009 -Day 1)
Web Developement Workshop (Oct 2009 -Day 1)Web Developement Workshop (Oct 2009 -Day 1)
Web Developement Workshop (Oct 2009 -Day 1)
Linux User's Group
 
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
Chan24811
 
HTML
HTMLHTML
HTML
Spy Seat
 
Web Page Design.ppt on aims to understand
Web Page Design.ppt on aims to understandWeb Page Design.ppt on aims to understand
Web Page Design.ppt on aims to understand
RICHARD389137
 
HTML: Tables and Forms
HTML: Tables and FormsHTML: Tables and Forms
HTML: Tables and Forms
BG Java EE Course
 
HTML
HTMLHTML
HTML
chinesebilli
 
INTRODUCTION FOR HTML
INTRODUCTION  FOR HTML INTRODUCTION  FOR HTML
INTRODUCTION FOR HTML
Rahul Bathri
 
Html introduction Part-2
Html introduction Part-2Html introduction Part-2
Html introduction Part-2
AAKASH KUMAR
 
CSS styling and adding description about
CSS styling and adding description aboutCSS styling and adding description about
CSS styling and adding description about
sahimhdsm12
 

More from Indu32 (12)

jdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt
jdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc pptjdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt
jdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt
Indu32
 
java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...
java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...
java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...
Indu32
 
Introduction to MySQL commands mysql presentation 22.pptx
Introduction to MySQL commands   mysql presentation 22.pptxIntroduction to MySQL commands   mysql presentation 22.pptx
Introduction to MySQL commands mysql presentation 22.pptx
Indu32
 
unit8_jdbc.pdf mysql and java jdbc connection
unit8_jdbc.pdf mysql and java jdbc connectionunit8_jdbc.pdf mysql and java jdbc connection
unit8_jdbc.pdf mysql and java jdbc connection
Indu32
 
css front end development , designing web page
css front end development , designing web pagecss front end development , designing web page
css front end development , designing web page
Indu32
 
CSS presentation for beginners where they can understand easily
CSS presentation for beginners where they can understand easilyCSS presentation for beginners where they can understand easily
CSS presentation for beginners where they can understand easily
Indu32
 
html webpage development different tags used
html webpage development different tags usedhtml webpage development different tags used
html webpage development different tags used
Indu32
 
design patter related ppt and presentation
design patter related ppt and presentationdesign patter related ppt and presentation
design patter related ppt and presentation
Indu32
 
In the given example only one object will be created. Firstly JVM will not fi...
In the given example only one object will be created. Firstly JVM will not fi...In the given example only one object will be created. Firstly JVM will not fi...
In the given example only one object will be created. Firstly JVM will not fi...
Indu32
 
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
Indu32
 
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
Indu32
 
java basic ppt introduction, The Java language is known for its robustness, s...
java basic ppt introduction, The Java language is known for its robustness, s...java basic ppt introduction, The Java language is known for its robustness, s...
java basic ppt introduction, The Java language is known for its robustness, s...
Indu32
 
jdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt
jdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc pptjdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt
jdbcppt.pptx , jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt jdbc ppt
Indu32
 
java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...
java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...
java-basics-1.pdf jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjghjgkj df jfjf hjg...
Indu32
 
Introduction to MySQL commands mysql presentation 22.pptx
Introduction to MySQL commands   mysql presentation 22.pptxIntroduction to MySQL commands   mysql presentation 22.pptx
Introduction to MySQL commands mysql presentation 22.pptx
Indu32
 
unit8_jdbc.pdf mysql and java jdbc connection
unit8_jdbc.pdf mysql and java jdbc connectionunit8_jdbc.pdf mysql and java jdbc connection
unit8_jdbc.pdf mysql and java jdbc connection
Indu32
 
css front end development , designing web page
css front end development , designing web pagecss front end development , designing web page
css front end development , designing web page
Indu32
 
CSS presentation for beginners where they can understand easily
CSS presentation for beginners where they can understand easilyCSS presentation for beginners where they can understand easily
CSS presentation for beginners where they can understand easily
Indu32
 
html webpage development different tags used
html webpage development different tags usedhtml webpage development different tags used
html webpage development different tags used
Indu32
 
design patter related ppt and presentation
design patter related ppt and presentationdesign patter related ppt and presentation
design patter related ppt and presentation
Indu32
 
In the given example only one object will be created. Firstly JVM will not fi...
In the given example only one object will be created. Firstly JVM will not fi...In the given example only one object will be created. Firstly JVM will not fi...
In the given example only one object will be created. Firstly JVM will not fi...
Indu32
 
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
Indu32
 
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...In this page, we will learn about the basics of OOPs. Object-Oriented Program...
In this page, we will learn about the basics of OOPs. Object-Oriented Program...
Indu32
 
java basic ppt introduction, The Java language is known for its robustness, s...
java basic ppt introduction, The Java language is known for its robustness, s...java basic ppt introduction, The Java language is known for its robustness, s...
java basic ppt introduction, The Java language is known for its robustness, s...
Indu32
 
Ad

Recently uploaded (20)

soc114-igfiebruvbupibvịbelỉbvch22-2024.pptx
soc114-igfiebruvbupibvịbelỉbvch22-2024.pptxsoc114-igfiebruvbupibvịbelỉbvch22-2024.pptx
soc114-igfiebruvbupibvịbelỉbvch22-2024.pptx
duongvd12c4bc1718
 
Top 5 Modern Furniture Pieces Every Home Should Have in 2025
Top 5 Modern Furniture Pieces Every Home Should Have in 2025Top 5 Modern Furniture Pieces Every Home Should Have in 2025
Top 5 Modern Furniture Pieces Every Home Should Have in 2025
designplusgallery
 
Presentation1asdghjhgggfhgfghfvbndj.pptx
Presentation1asdghjhgggfhgfghfvbndj.pptxPresentation1asdghjhgggfhgfghfvbndj.pptx
Presentation1asdghjhgggfhgfghfvbndj.pptx
sandeepkushwahag2000
 
ppt nm epanet org irrigation system (1).pptx
ppt nm epanet org irrigation system (1).pptxppt nm epanet org irrigation system (1).pptx
ppt nm epanet org irrigation system (1).pptx
dondeepakff33
 
Using AI to Streamline Personas and Journey Map Creation
Using AI to Streamline Personas and Journey Map CreationUsing AI to Streamline Personas and Journey Map Creation
Using AI to Streamline Personas and Journey Map Creation
Kyle Soucy
 
CORPORATE OFFICE INTERNAL BRANDING OF A LEADING INDO-JAPANESE AUTOMOTIVE BRAND
CORPORATE OFFICE INTERNAL BRANDING OF A LEADING INDO-JAPANESE AUTOMOTIVE BRANDCORPORATE OFFICE INTERNAL BRANDING OF A LEADING INDO-JAPANESE AUTOMOTIVE BRAND
CORPORATE OFFICE INTERNAL BRANDING OF A LEADING INDO-JAPANESE AUTOMOTIVE BRAND
aonbanerjee
 
McKinsey – Mobility Consumer Pulse 2024 | Global Trends in EVs, Shared Mobili...
McKinsey – Mobility Consumer Pulse 2024 | Global Trends in EVs, Shared Mobili...McKinsey – Mobility Consumer Pulse 2024 | Global Trends in EVs, Shared Mobili...
McKinsey – Mobility Consumer Pulse 2024 | Global Trends in EVs, Shared Mobili...
INKPPT
 
PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...
PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...
PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...
officialpino35
 
EY – The Future of Assurance | How Technology is Transforming the Audit
EY – The Future of Assurance | How Technology is Transforming the AuditEY – The Future of Assurance | How Technology is Transforming the Audit
EY – The Future of Assurance | How Technology is Transforming the Audit
INKPPT
 
Digital Marketing Mock Project - Client Testimonial
Digital Marketing Mock Project - Client TestimonialDigital Marketing Mock Project - Client Testimonial
Digital Marketing Mock Project - Client Testimonial
Adeline Yeo
 
最新版加拿大莱斯桥学院毕业证(Lethbridge毕业证书)原版定制
最新版加拿大莱斯桥学院毕业证(Lethbridge毕业证书)原版定制最新版加拿大莱斯桥学院毕业证(Lethbridge毕业证书)原版定制
最新版加拿大莱斯桥学院毕业证(Lethbridge毕业证书)原版定制
Taqyea
 
KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030
KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030
KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030
INKPPT
 
PPT -MBI_07 .pptx final to present today
PPT -MBI_07 .pptx final to present todayPPT -MBI_07 .pptx final to present today
PPT -MBI_07 .pptx final to present today
nikhilpanchal510
 
A Sneak Peek into Communication Design by Ayon
A Sneak Peek into Communication Design by AyonA Sneak Peek into Communication Design by Ayon
A Sneak Peek into Communication Design by Ayon
aonbanerjee
 
The Butterfly Effect in Design Entrepreneurship.pptx
The Butterfly Effect in Design Entrepreneurship.pptxThe Butterfly Effect in Design Entrepreneurship.pptx
The Butterfly Effect in Design Entrepreneurship.pptx
Prof. Hany El-Said
 
101 Marketing for Design Entrepreneurs.pptx
101 Marketing for Design Entrepreneurs.pptx101 Marketing for Design Entrepreneurs.pptx
101 Marketing for Design Entrepreneurs.pptx
Prof. Hany El-Said
 
Morgenbooster - Systems and Transition. 14.05.2025.pdf
Morgenbooster - Systems and Transition. 14.05.2025.pdfMorgenbooster - Systems and Transition. 14.05.2025.pdf
Morgenbooster - Systems and Transition. 14.05.2025.pdf
1508 A/S
 
Recycled Materials and Eco-Design for design students.pptx
Recycled Materials and Eco-Design for design students.pptxRecycled Materials and Eco-Design for design students.pptx
Recycled Materials and Eco-Design for design students.pptx
Prof. Hany El-Said
 
Burn and cold injury presentation-1.pptx
Burn and cold injury presentation-1.pptxBurn and cold injury presentation-1.pptx
Burn and cold injury presentation-1.pptx
azizurhman200
 
‘Everybody is a designer’ revisited: 
A Retrospective on Design’s Power, Posi...
‘Everybody is a designer’ revisited: 
A Retrospective on Design’s Power, Posi...‘Everybody is a designer’ revisited: 
A Retrospective on Design’s Power, Posi...
‘Everybody is a designer’ revisited: 
A Retrospective on Design’s Power, Posi...
Lou Susi
 
soc114-igfiebruvbupibvịbelỉbvch22-2024.pptx
soc114-igfiebruvbupibvịbelỉbvch22-2024.pptxsoc114-igfiebruvbupibvịbelỉbvch22-2024.pptx
soc114-igfiebruvbupibvịbelỉbvch22-2024.pptx
duongvd12c4bc1718
 
Top 5 Modern Furniture Pieces Every Home Should Have in 2025
Top 5 Modern Furniture Pieces Every Home Should Have in 2025Top 5 Modern Furniture Pieces Every Home Should Have in 2025
Top 5 Modern Furniture Pieces Every Home Should Have in 2025
designplusgallery
 
Presentation1asdghjhgggfhgfghfvbndj.pptx
Presentation1asdghjhgggfhgfghfvbndj.pptxPresentation1asdghjhgggfhgfghfvbndj.pptx
Presentation1asdghjhgggfhgfghfvbndj.pptx
sandeepkushwahag2000
 
ppt nm epanet org irrigation system (1).pptx
ppt nm epanet org irrigation system (1).pptxppt nm epanet org irrigation system (1).pptx
ppt nm epanet org irrigation system (1).pptx
dondeepakff33
 
Using AI to Streamline Personas and Journey Map Creation
Using AI to Streamline Personas and Journey Map CreationUsing AI to Streamline Personas and Journey Map Creation
Using AI to Streamline Personas and Journey Map Creation
Kyle Soucy
 
CORPORATE OFFICE INTERNAL BRANDING OF A LEADING INDO-JAPANESE AUTOMOTIVE BRAND
CORPORATE OFFICE INTERNAL BRANDING OF A LEADING INDO-JAPANESE AUTOMOTIVE BRANDCORPORATE OFFICE INTERNAL BRANDING OF A LEADING INDO-JAPANESE AUTOMOTIVE BRAND
CORPORATE OFFICE INTERNAL BRANDING OF A LEADING INDO-JAPANESE AUTOMOTIVE BRAND
aonbanerjee
 
McKinsey – Mobility Consumer Pulse 2024 | Global Trends in EVs, Shared Mobili...
McKinsey – Mobility Consumer Pulse 2024 | Global Trends in EVs, Shared Mobili...McKinsey – Mobility Consumer Pulse 2024 | Global Trends in EVs, Shared Mobili...
McKinsey – Mobility Consumer Pulse 2024 | Global Trends in EVs, Shared Mobili...
INKPPT
 
PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...
PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...
PINOQQ SITUS MUDAH MERAIH KEMENANGAN SEGERA DAFTAR DAN RAIH KEMENANGAN NYA HA...
officialpino35
 
EY – The Future of Assurance | How Technology is Transforming the Audit
EY – The Future of Assurance | How Technology is Transforming the AuditEY – The Future of Assurance | How Technology is Transforming the Audit
EY – The Future of Assurance | How Technology is Transforming the Audit
INKPPT
 
Digital Marketing Mock Project - Client Testimonial
Digital Marketing Mock Project - Client TestimonialDigital Marketing Mock Project - Client Testimonial
Digital Marketing Mock Project - Client Testimonial
Adeline Yeo
 
最新版加拿大莱斯桥学院毕业证(Lethbridge毕业证书)原版定制
最新版加拿大莱斯桥学院毕业证(Lethbridge毕业证书)原版定制最新版加拿大莱斯桥学院毕业证(Lethbridge毕业证书)原版定制
最新版加拿大莱斯桥学院毕业证(Lethbridge毕业证书)原版定制
Taqyea
 
KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030
KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030
KPMG – Future of Supply Chain | ESG, Technology & Risk Strategies for 2030
INKPPT
 
PPT -MBI_07 .pptx final to present today
PPT -MBI_07 .pptx final to present todayPPT -MBI_07 .pptx final to present today
PPT -MBI_07 .pptx final to present today
nikhilpanchal510
 
A Sneak Peek into Communication Design by Ayon
A Sneak Peek into Communication Design by AyonA Sneak Peek into Communication Design by Ayon
A Sneak Peek into Communication Design by Ayon
aonbanerjee
 
The Butterfly Effect in Design Entrepreneurship.pptx
The Butterfly Effect in Design Entrepreneurship.pptxThe Butterfly Effect in Design Entrepreneurship.pptx
The Butterfly Effect in Design Entrepreneurship.pptx
Prof. Hany El-Said
 
101 Marketing for Design Entrepreneurs.pptx
101 Marketing for Design Entrepreneurs.pptx101 Marketing for Design Entrepreneurs.pptx
101 Marketing for Design Entrepreneurs.pptx
Prof. Hany El-Said
 
Morgenbooster - Systems and Transition. 14.05.2025.pdf
Morgenbooster - Systems and Transition. 14.05.2025.pdfMorgenbooster - Systems and Transition. 14.05.2025.pdf
Morgenbooster - Systems and Transition. 14.05.2025.pdf
1508 A/S
 
Recycled Materials and Eco-Design for design students.pptx
Recycled Materials and Eco-Design for design students.pptxRecycled Materials and Eco-Design for design students.pptx
Recycled Materials and Eco-Design for design students.pptx
Prof. Hany El-Said
 
Burn and cold injury presentation-1.pptx
Burn and cold injury presentation-1.pptxBurn and cold injury presentation-1.pptx
Burn and cold injury presentation-1.pptx
azizurhman200
 
‘Everybody is a designer’ revisited: 
A Retrospective on Design’s Power, Posi...
‘Everybody is a designer’ revisited: 
A Retrospective on Design’s Power, Posi...‘Everybody is a designer’ revisited: 
A Retrospective on Design’s Power, Posi...
‘Everybody is a designer’ revisited: 
A Retrospective on Design’s Power, Posi...
Lou Susi
 
Ad

Web development ppt used to design web applocation

  • 2. HTML Introduction HTML :  HTML stands for Hyper Text Markup Language  HTML is not a programming language, it is a markup language  A markup language is a set of markup tags  HTML uses markup tags to describe web pages  Html is platform independent language
  • 3. What is CSS?  What is CSS? CSS stands for Cascading Style Sheets Styles define how to display HTML elements Styles were added to HTML 4.0 to solve a problem
  • 4. What is JavaScript? What is JavaScript?  JavaScript was designed to add interactivity to HTML pages .
  • 5. DHTML  DHTML is NOT a language.  DHTML is a TERM describing the art of making dynamic and interactive web pages.  DHTML combines HTML, JavaScript, the HTML DOM, and CSS.
  • 6. Session 1  What is web page? The basic unit of information displayed over the net is a web page . What is web site ? It is a collection of web pages .  URI : uniform resources Identifier  Home page  Communication b/w server and a browsers  Feature
  • 7. 3 kind of network  LAN : local area network  WAN : wide area network  MAN: metropolitan area network
  • 8. Types of webpage  Static web pages  Dynamic web pages
  • 9. Structure of Html <!DOCTYPE html> <html> <head> <title>my html</title> </head> <body> Welcome to html </body> </html>
  • 10. Attributes & Tags  < body bgcolor=“red”> bgcolor=attributes , red= values  Tags helps to add picture , movies, heading etc Ex : <h1> ……………….. </h1>
  • 11. Basic tags elements in html  Paragraph: <p> </p>  break: <br> or <br/>  Heading : H1,H2,H3,H4,H5,H6  HR: <hr> <hr color=“red” width=“75%” size=“4”>  Pre: <pre></pre> (space)  Center:<center> </center>
  • 12. Basic text elements in html  Superscript:<sup> </sup>  Subscript :<sub> </sub>  Bold :<b> </b>  I :<i> </i>  u :<u> </u>  Big :<big> </big>  Small :<small> </small>  Strike :<strike> </strike>
  • 13. Basic text elements in html  Delete :<del> </del>  Insert :<ins> </ins>  Strong :< Strong > < /Strong >  Color text : 2 ways : <font size color face> </font> or <p style=“color: green;font-size:8;”> </p> (inline css)
  • 14. Basic text elements in html  Marquee :<marquee> </marquee>  Acronym :< Acronym title=“meaning”></ Acronym title>  Cite (meaning):Reference <cite>google.com</cite>  Divided :<div> </div>  Marquee bgcolor=“red”  < Marquee> <span style=“background- color: red”>html</span></marquee>
  • 15. Basic text elements in html  <marquee direction =“right” scrollamount=“30”>  <marquee behavior="alternate">  Image <img src=“moon.jpg”/> <img src="sunset.gif" /> < img src=“moon.jpg” width=“50” height=“200” alt=“it is a moon”/>  Alter : alt=“united nation org”
  • 16. HTML Quotation Tag Description <abbr> Defines an abbreviation or acronym <address> Defines contact information for the author/owner of a document <bdo> Defines the text direction <blockquote> Defines a section that is quoted from another source <cite> Defines the title of a work <q> Defines a short inline quotation <mark> For highlight
  • 17. HTML Computer Code Elements Tag Description <code> Defines programming code <kbd> Defines keyboard input <samp> Defines computer output <var> Defines a variable <pre> Defines preformatted text
  • 18. List  3 types :  Unordered list  Ordered list  Definition list Unordered list : type="square" type="disc" type="circle" <h4 align="center">Shopping List</h4> <ul > <li>Milk</li> <li>chocolate</li> <li>Cereal</li> <li>Bread</li> </ul>
  • 19. list  Ordered list <h4 align="center">Goals</h4> <ol> <li>Find a Job</li> <li>Get Money</li> <li>Move Out</li> </ol> Lower-Case Letters, Upper-Case Letters ,Lower- Case Numerals ,Upper-Case Numerals, Roman-letters
  • 20. Definition list <dl> <dt><b>Fromage</b></dt> <dd>French word for cheese.</dd> <dt><b>Voiture</b></dt> <dd>French word for car.</dd> </dl> Fromage French word for cheese. Voiture French word for car.  <dl> - defines the start of the list  <dt> - definition term  <dd> - defining definition
  • 21. Tables  <table border="1"> <tr><td>Row 1 Cell 1</td> <td>Row 1 Cell 2</td></tr> <tr><td>Row 2 Cell 1</td> <td>Row 2 Cell 2</td></tr> </table>
  • 22. Tables  <table border="1">  <tr> <th>Column 1</th> <th>Column 2</th> <th>Column 3</th> </tr> <tr> <td rowspan="2">Row 1 Cell 1</td> <td>Row 1 Cell 2</td><td>Row 1 Cell 3</td></tr> <tr><td>Row 2 Cell 2</td><td>Row 2 Cell 3</td></tr> <tr><td colspan="3">Row 3 Cell 1</td></tr> </table>
  • 23. Cell Padding and Spacing  Cell Padding and Spacing  With the cell padding and cell spacing attributes you will be able to adjust the white space on your tables. Spacing defines the space between two cells , while padding represents the distance between cell borders and the content of a cell. Color has been added to the table to emphasize these attributes.
  • 24. Table  <table border="1" cellspacing="10" bgcolor="rgb(0,255,0)"> <tr> <th>Column 1</th> <th>Column 2</th> </tr> <tr><td>Row 1 Cell 1</td> <td>Row 1 Cell 2</td></tr> <tr><td>Row 2 Cell 1</td> <td>Row 2 Cell 2</td></tr> </table>
  • 25. Tables <table border="1" cellpadding="10" bgcolor="rgb(0,255,0)"> <tr> <th>Column 1</th> <th>Column 2</th> </tr> <tr><td>Row 1 Cell 1</td><td>Row 1 Cell 2</td></tr> <tr><td>Row 2 Cell 1</td><td>Row 2 Cell 2</td></tr> </table>
  • 26. link  <a href="2.html">click here</A>  <a href="2.html“ target=“_blank”>click here</A>  <A HREF="MAILTO:MAHESH@GMAIL.COM">FEEDBA CK</A>  <A HREF="3.HTML"> <IMG SRC="images2.jpeg"></a>  <a href="http://www.google.co.in/">google</a>
  • 27. HTML Comment Tags Comment tags <!-- and --> are used to insert comments in HTML. Ex: <!-- This is a comment --> <p>This is a paragraph.</p> <!-- Remember to add more information here -->
  • 28. Form: HTML web forms are a composition of buttons, checkboxes, and text input fields embedded inside of HTML documents with one goal in mind: to capture user input. By doing things such as providing fields for user data such as names, phone number, and email addresses, web forms give users the opportunity to interact directly with a webpage.  <html> <body> <form><caption><center>APPLICATION FORM</center></caption> First Name:</td><td><input type="text" maxlength="15" size="30" value="john"> Last Name:</td><td><input type="text" maxlength="15" size="30" value="Ford">
  • 29. form Gender:</td><td><input type="radio" name="gender" value="male">M <input type="radio" name="gender" value="female" checked>f Education:<input type="checkbox" name="ug">ug <input type="checkbox" name="pg">pg<br><br> Password:<input type="password" maxlength="10" size="30"><br><br>
  • 30. form Country: <select name="country"> <option> choose</option> <option>India</option> <option>England</option> <option>Sri lanka</option> </select><br><br> Feedback:<textarea rows="5" cols="20"> </textarea> <input type="submit" value="submit"> <input type="reset" value="reset">
  • 31. Frame(With frames, several Web pages can be displayed in the same browser window. <html> <frameset cols="25%,50%,25%"> <frame src="a.html" /> <frame src="b.html" /> <frame src=“c.html" /> </frameset> </html>
  • 32. frame <html> <frameset rows="25%,50%,25%"> <frame src="frame_a.htm" /> <frame src="frame_b.htm" /> <frame src="frame_c.htm" /> </frameset> </html>
  • 33. Nested framesets <html> <frameset rows="50%,50%"> <frame src="frame_a.html" /> <frameset cols="25%,75%"> <frame src="frame_b.html" /> <frame src="frame_c.html" /> </frameset> </frameset> </html>
  • 34. Iframe: An iframe is used to display a web page within a web page. <iframe src="oline.html" width="350" height="150" scrolling="auto" frameborder ="1"> </iframe> <The End>
  翻译: