SlideShare a Scribd company logo
1 of 25
INTERNET BASICS
AND
INTRODUCTION TO MARK
UP LANGUAGE(HTML)
Presented By:
Ankita Bhalla
WHAT IS INTERNET
Internet is a collection of local, regional,
national and international computer networks
that are linked together to exchange data and
distribute processing tasks.
It converts the whole world into a global village
TYPES OF COMPUTER IN INTERNET
 Servers
Computers which offer information to be read.
 Clients
Computer that read the information offered.
NETWORK
 Network
collection of computers and other hardware components
interconnected by communication channels that allow
sharing of resources and information
 Types of network
 LAN(Local Area Network)
 MAN(Metropolitan Area Network)
 WAN(Wide Area Network)
ESTABLISHING CONNECTIVITY ON THE INTERNET
 TCP/IP protocol is used to set up communication
between a client and a server on the internet
 It breaks up data into datagram and guarantees
that the data is correctly received at its destination
WORLD WIDE WEB(WWW)
A system of interlinked hypertext documents accessed
via the internet.
Computer scientist Sir Tim Berners Lee wrote a
proposal for world wide web in 1989.
It is a worldwide information service on the internet.
WWW is an organization which provides information
on the internet.
 Web server: a system on the internet containing one or
more web site
 Web site: a collection of one or more web pages
 Web pages: single disk file with a single file name
 Home pages: first page in website
Terminology
URL AND HTTP
 URL(UNIFORM RESOURCE LOCATOR)
It is the global address of documents and
other resources on the World Wide Web.
 HTTP(HYPERTEXT TRANSFER PROTOCOL)
HTTP defines how messages are formatted and
transmitted, and what actions Web
servers and browsers should take in response to
various commands
HTML
HyperText Markup Language
the publishing language of the World Wide Web
the standard used to create web pages
defines the structure of information by using a
variety of tags and attributes.
How to Create and View an HTML document?
1.Use an text editor such as Editpad to write the
document.
2.Save the file as filename.html on a PC. This is called
the Document Source.
3.Open Netscape (or any browser) Off-Line
4.Switch to Netscape
5.Click on File, Open File and select the filename.html
document that you just created.
6.Your HTML page should now appear just like any
other Web page in Netscape
HTML TAGS
•Tags are the instructions that are embedded
directly into the text of the documents
•All HTML tags begin with an open angle
bracket(<) and end with the close angle
bracket(>).
TYPES OF TAGS
Paired Tags
•Has a companion tag with
it.
•Paired tag has to be
closed after its usage is
complete.
•For eg. <B> Hello </B> i.e.
bold tag is a paired tag
Singular Tags
•Does not have a companion
tag.
•No need to close the tag after
its usage is complete.
•For eg. <BR> tag to insert a
line break.
STRUCTURE OF HTML PROGRAM
<html>
<head>
<title>title of the document goes here</title>
</head>
<body>
….
visible text goes here
….
</body>
<html>
DOCUMENT HEAD
Information placed in this section is essential to
the inner workings of the document
It has nothing to do with the content of the
document.
Information placed within <head></head> is not
displayed in browser
Except the title placed in <title></title> which is
displayed on the title bar of the browser
DOCUMENT BODY
Tag used:
<body></body>
Attributes of body tag:
Bgcolor
,Background,Text
Example:
<body
background="C:UsersPubli
cPicturesSample
PicturesKoala.jpg"
text=red>
Hello
</body>
TEXT FORMATTING
Paragraph Breaks <p>:
moves onto a new line, skipping one line
between previous line and the new line.
Line Breaks <br>:
Same as <p> tag but it does not skip a line.
TEXT FORMATTING
Heading Styles
<h1>Largest Heading</h1>
<h2> . . . </h2>
<h3> . . . </h3>
<h4> . . . </h4>
<h5> . . . </h5>
<h6>Smallest Heading</h6>
Text Styles:
Bold <b>
Italic<i>
Underline<u>
OTHER TEXT EFFECTS
Example:
<font face=“arial” color=“red”
Size=7 >hello</font>
Centering( text, images):
<center>text</center>
Controlling Font Size and Color:
<font>text</font>
Attributes:
Face: sets font to the specified name
Size: sets size of text(between 1-7).
Default size =3
Color: sets color of the text.
Tag used is <img >
ATTRIBUTES
Align, height, border, width, src, alt
Example:
<img src=“imag_name1.jpg”
align=“center” height= 100 width
=100 alt=“image”>
Images
Tag used is <a href >
To change the color of the links we add the following attributes in the
<body>
• link
• Alink
•Vlink
Example:
External document references
<a href=“file.html”></a>
Internal document references
<a name=“ location name”>
<a href=“#location name”></a>
Linking Documents
LISTS
• Unordered lists(Bullets)
•Tag used is <ul></ul>
•Attributes:
•Type
Example:
<ul type=“square”>
<li>apple</li>
<li> banana</li>
</ul>
• Ordered lists(Numbering)
•Tag used is <ol></ol>
•Attributes:
Type,start,value
Example:
<ol type=“1” start=“5”>
<li value=“6”>apple</li>
<li> banana</li>
</ol>
TABLES
Example:
<table border=3 align=“center”
cellpadding=2”>
<tr >
<th colspan=2 >…..</th></tr>
<tr>
<td>…</td>
<td>……</td>
</tr>
</table>
Structure of table:
<table>
<tr>
<th>…..</th>
<td>……</td>
</tr>
</table>
Attributes:
Align, valign, width,
border,cellpadding, cellspacing,
colspan, rowspan
FRAMES
Structure;
<frameset >
<frame>
</frame>
</frameset>
Attributes of <frameset>:
Rows,Cols
Attributes of <frame>:
Src,MarginHeight,Margin
Width,Name,Noresize,Scr
olling
Example:
<frameset rows=“30%,*”>
<frameset cols=“50%,50%”>
<frame src=“file1.html”
name=“main”>
<frame src=“file2.html”
marginheight=“100” scrolling=no>
</frameset>
<frameset cols=“50%,50%”>
<frame src=“file3.html”>
<frame src=“file4.html”>
</frameset>
</frameset>
FORMS
Tag used:<form></form>
Form Elements:
Text, Password, Button,
Checkbox, Radio, Reset,
Submit, Select,TextArea,
Hidden
Attributes:
Name,action,value
Example:
<form name=“form”
action=post value=“url”>
<input type=text name=t1>
<input type=button name=b1
value=Click>Click
</form>
THANK YOU

More Related Content

What's hot

Introduction to Web Technology
Introduction to Web TechnologyIntroduction to Web Technology
Introduction to Web TechnologyAashish Jain
 
Introduction to HTML5 Canvas
Introduction to HTML5 CanvasIntroduction to HTML5 Canvas
Introduction to HTML5 CanvasMindy McAdams
 
Hypertext transfer protocol and hypertext transfer protocol secure(HTTP and H...
Hypertext transfer protocol and hypertext transfer protocol secure(HTTP and H...Hypertext transfer protocol and hypertext transfer protocol secure(HTTP and H...
Hypertext transfer protocol and hypertext transfer protocol secure(HTTP and H...rahul kundu
 
File models and file accessing models
File models and file accessing modelsFile models and file accessing models
File models and file accessing modelsishmecse13
 
Introduction to ASP.NET
Introduction to ASP.NETIntroduction to ASP.NET
Introduction to ASP.NETRajkumarsoy
 
Visula C# Programming Lecture 1
Visula C# Programming Lecture 1Visula C# Programming Lecture 1
Visula C# Programming Lecture 1Abou Bakr Ashraf
 
Lecture 1 introduction to vb.net
Lecture 1   introduction to vb.netLecture 1   introduction to vb.net
Lecture 1 introduction to vb.netMUKALU STEVEN
 
XML, DTD & XSD Overview
XML, DTD & XSD OverviewXML, DTD & XSD Overview
XML, DTD & XSD OverviewPradeep Rapolu
 
Introduction to vb.net
Introduction to vb.netIntroduction to vb.net
Introduction to vb.netJaya Kumari
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheetMichael Jhon
 
Chapter 10 : Application layer
Chapter 10 : Application layerChapter 10 : Application layer
Chapter 10 : Application layerteknetir
 
Web technologies lesson 1
Web technologies   lesson 1Web technologies   lesson 1
Web technologies lesson 1nhepner
 
Bootstrap - Basics
Bootstrap - BasicsBootstrap - Basics
Bootstrap - BasicsFirosK2
 

What's hot (20)

Id and class selector
Id and class selectorId and class selector
Id and class selector
 
Introduction to Web Technology
Introduction to Web TechnologyIntroduction to Web Technology
Introduction to Web Technology
 
Introduction to HTML5 Canvas
Introduction to HTML5 CanvasIntroduction to HTML5 Canvas
Introduction to HTML5 Canvas
 
Hypertext transfer protocol and hypertext transfer protocol secure(HTTP and H...
Hypertext transfer protocol and hypertext transfer protocol secure(HTTP and H...Hypertext transfer protocol and hypertext transfer protocol secure(HTTP and H...
Hypertext transfer protocol and hypertext transfer protocol secure(HTTP and H...
 
File models and file accessing models
File models and file accessing modelsFile models and file accessing models
File models and file accessing models
 
Xml
XmlXml
Xml
 
Introduction to ASP.NET
Introduction to ASP.NETIntroduction to ASP.NET
Introduction to ASP.NET
 
Visula C# Programming Lecture 1
Visula C# Programming Lecture 1Visula C# Programming Lecture 1
Visula C# Programming Lecture 1
 
Lecture 1 introduction to vb.net
Lecture 1   introduction to vb.netLecture 1   introduction to vb.net
Lecture 1 introduction to vb.net
 
XML, DTD & XSD Overview
XML, DTD & XSD OverviewXML, DTD & XSD Overview
XML, DTD & XSD Overview
 
Network Layer & Transport Layer
Network Layer & Transport LayerNetwork Layer & Transport Layer
Network Layer & Transport Layer
 
Dce rpc
Dce rpcDce rpc
Dce rpc
 
Introduction to vb.net
Introduction to vb.netIntroduction to vb.net
Introduction to vb.net
 
web server
web serverweb server
web server
 
Cascading style sheet
Cascading style sheetCascading style sheet
Cascading style sheet
 
Sgml
SgmlSgml
Sgml
 
computer language - Html frames
computer language - Html framescomputer language - Html frames
computer language - Html frames
 
Chapter 10 : Application layer
Chapter 10 : Application layerChapter 10 : Application layer
Chapter 10 : Application layer
 
Web technologies lesson 1
Web technologies   lesson 1Web technologies   lesson 1
Web technologies lesson 1
 
Bootstrap - Basics
Bootstrap - BasicsBootstrap - Basics
Bootstrap - Basics
 

Similar to Introduction to HTML and Internet Basics

0 csc 3311 slide internet programming
0 csc 3311 slide internet programming0 csc 3311 slide internet programming
0 csc 3311 slide internet programmingumardanjumamaiwada
 
introdution-to-html (1).ppt
introdution-to-html (1).pptintrodution-to-html (1).ppt
introdution-to-html (1).pptMarktero2
 
MINOR PROZECT REPORT on WINDOWS SERVER
MINOR PROZECT REPORT on WINDOWS SERVERMINOR PROZECT REPORT on WINDOWS SERVER
MINOR PROZECT REPORT on WINDOWS SERVERAsish Verma
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.pptSri Latha
 
HTML is a markup language used by the browser to manipulate text, images, and...
HTML is a markup language used by the browser to manipulate text, images, and...HTML is a markup language used by the browser to manipulate text, images, and...
HTML is a markup language used by the browser to manipulate text, images, and...ssuser6478a8
 
introdution-to-html (1).ppt
introdution-to-html (1).pptintrodution-to-html (1).ppt
introdution-to-html (1).pptF3ZONE1
 
introdution-to-html.ppt NJBJGHGJHGGJGJG
introdution-to-html.ppt  NJBJGHGJHGGJGJGintrodution-to-html.ppt  NJBJGHGJHGGJGJG
introdution-to-html.ppt NJBJGHGJHGGJGJGAMRITHA16
 
introdution-to-html.ppt jahjdbsfhbdhdbjkgbe
introdution-to-html.ppt jahjdbsfhbdhdbjkgbeintrodution-to-html.ppt jahjdbsfhbdhdbjkgbe
introdution-to-html.ppt jahjdbsfhbdhdbjkgbeJamaicaCabrales
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.pptGezahegnHailu1
 
introdution-to-html programming and dhtml
introdution-to-html programming and dhtmlintrodution-to-html programming and dhtml
introdution-to-html programming and dhtmlsanthosh sriprada
 

Similar to Introduction to HTML and Internet Basics (20)

Iwt module 1
Iwt  module 1Iwt  module 1
Iwt module 1
 
Web+html
Web+htmlWeb+html
Web+html
 
0 csc 3311 slide internet programming
0 csc 3311 slide internet programming0 csc 3311 slide internet programming
0 csc 3311 slide internet programming
 
introdution-to-html (1).ppt
introdution-to-html (1).pptintrodution-to-html (1).ppt
introdution-to-html (1).ppt
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Web engineering
Web engineeringWeb engineering
Web engineering
 
MINOR PROZECT REPORT on WINDOWS SERVER
MINOR PROZECT REPORT on WINDOWS SERVERMINOR PROZECT REPORT on WINDOWS SERVER
MINOR PROZECT REPORT on WINDOWS SERVER
 
Www(alyssa) (2)
Www(alyssa) (2)Www(alyssa) (2)
Www(alyssa) (2)
 
HTML Basics.pdf
HTML Basics.pdfHTML Basics.pdf
HTML Basics.pdf
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
summary html.ppt
summary html.pptsummary html.ppt
summary html.ppt
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
HTML is a markup language used by the browser to manipulate text, images, and...
HTML is a markup language used by the browser to manipulate text, images, and...HTML is a markup language used by the browser to manipulate text, images, and...
HTML is a markup language used by the browser to manipulate text, images, and...
 
introdution-to-html (1).ppt
introdution-to-html (1).pptintrodution-to-html (1).ppt
introdution-to-html (1).ppt
 
introdution-to-html.ppt NJBJGHGJHGGJGJG
introdution-to-html.ppt  NJBJGHGJHGGJGJGintrodution-to-html.ppt  NJBJGHGJHGGJGJG
introdution-to-html.ppt NJBJGHGJHGGJGJG
 
html.pptx
html.pptxhtml.pptx
html.pptx
 
introdution-to-html.ppt jahjdbsfhbdhdbjkgbe
introdution-to-html.ppt jahjdbsfhbdhdbjkgbeintrodution-to-html.ppt jahjdbsfhbdhdbjkgbe
introdution-to-html.ppt jahjdbsfhbdhdbjkgbe
 
introdution-to-html.ppt
introdution-to-html.pptintrodution-to-html.ppt
introdution-to-html.ppt
 
introdution-to-html programming and dhtml
introdution-to-html programming and dhtmlintrodution-to-html programming and dhtml
introdution-to-html programming and dhtml
 

Recently uploaded

(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 

Recently uploaded (20)

(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 

Introduction to HTML and Internet Basics

  • 1. INTERNET BASICS AND INTRODUCTION TO MARK UP LANGUAGE(HTML) Presented By: Ankita Bhalla
  • 2. WHAT IS INTERNET Internet is a collection of local, regional, national and international computer networks that are linked together to exchange data and distribute processing tasks. It converts the whole world into a global village
  • 3. TYPES OF COMPUTER IN INTERNET  Servers Computers which offer information to be read.  Clients Computer that read the information offered.
  • 4. NETWORK  Network collection of computers and other hardware components interconnected by communication channels that allow sharing of resources and information  Types of network  LAN(Local Area Network)  MAN(Metropolitan Area Network)  WAN(Wide Area Network)
  • 5. ESTABLISHING CONNECTIVITY ON THE INTERNET  TCP/IP protocol is used to set up communication between a client and a server on the internet  It breaks up data into datagram and guarantees that the data is correctly received at its destination
  • 6. WORLD WIDE WEB(WWW) A system of interlinked hypertext documents accessed via the internet. Computer scientist Sir Tim Berners Lee wrote a proposal for world wide web in 1989. It is a worldwide information service on the internet. WWW is an organization which provides information on the internet.
  • 7.  Web server: a system on the internet containing one or more web site  Web site: a collection of one or more web pages  Web pages: single disk file with a single file name  Home pages: first page in website Terminology
  • 8. URL AND HTTP  URL(UNIFORM RESOURCE LOCATOR) It is the global address of documents and other resources on the World Wide Web.  HTTP(HYPERTEXT TRANSFER PROTOCOL) HTTP defines how messages are formatted and transmitted, and what actions Web servers and browsers should take in response to various commands
  • 9. HTML HyperText Markup Language the publishing language of the World Wide Web the standard used to create web pages defines the structure of information by using a variety of tags and attributes.
  • 10. How to Create and View an HTML document? 1.Use an text editor such as Editpad to write the document. 2.Save the file as filename.html on a PC. This is called the Document Source. 3.Open Netscape (or any browser) Off-Line 4.Switch to Netscape 5.Click on File, Open File and select the filename.html document that you just created. 6.Your HTML page should now appear just like any other Web page in Netscape
  • 11. HTML TAGS •Tags are the instructions that are embedded directly into the text of the documents •All HTML tags begin with an open angle bracket(<) and end with the close angle bracket(>).
  • 12. TYPES OF TAGS Paired Tags •Has a companion tag with it. •Paired tag has to be closed after its usage is complete. •For eg. <B> Hello </B> i.e. bold tag is a paired tag Singular Tags •Does not have a companion tag. •No need to close the tag after its usage is complete. •For eg. <BR> tag to insert a line break.
  • 13. STRUCTURE OF HTML PROGRAM <html> <head> <title>title of the document goes here</title> </head> <body> …. visible text goes here …. </body> <html>
  • 14. DOCUMENT HEAD Information placed in this section is essential to the inner workings of the document It has nothing to do with the content of the document. Information placed within <head></head> is not displayed in browser Except the title placed in <title></title> which is displayed on the title bar of the browser
  • 15. DOCUMENT BODY Tag used: <body></body> Attributes of body tag: Bgcolor ,Background,Text Example: <body background="C:UsersPubli cPicturesSample PicturesKoala.jpg" text=red> Hello </body>
  • 16. TEXT FORMATTING Paragraph Breaks <p>: moves onto a new line, skipping one line between previous line and the new line. Line Breaks <br>: Same as <p> tag but it does not skip a line.
  • 17. TEXT FORMATTING Heading Styles <h1>Largest Heading</h1> <h2> . . . </h2> <h3> . . . </h3> <h4> . . . </h4> <h5> . . . </h5> <h6>Smallest Heading</h6> Text Styles: Bold <b> Italic<i> Underline<u>
  • 18. OTHER TEXT EFFECTS Example: <font face=“arial” color=“red” Size=7 >hello</font> Centering( text, images): <center>text</center> Controlling Font Size and Color: <font>text</font> Attributes: Face: sets font to the specified name Size: sets size of text(between 1-7). Default size =3 Color: sets color of the text.
  • 19. Tag used is <img > ATTRIBUTES Align, height, border, width, src, alt Example: <img src=“imag_name1.jpg” align=“center” height= 100 width =100 alt=“image”> Images
  • 20. Tag used is <a href > To change the color of the links we add the following attributes in the <body> • link • Alink •Vlink Example: External document references <a href=“file.html”></a> Internal document references <a name=“ location name”> <a href=“#location name”></a> Linking Documents
  • 21. LISTS • Unordered lists(Bullets) •Tag used is <ul></ul> •Attributes: •Type Example: <ul type=“square”> <li>apple</li> <li> banana</li> </ul> • Ordered lists(Numbering) •Tag used is <ol></ol> •Attributes: Type,start,value Example: <ol type=“1” start=“5”> <li value=“6”>apple</li> <li> banana</li> </ol>
  • 22. TABLES Example: <table border=3 align=“center” cellpadding=2”> <tr > <th colspan=2 >…..</th></tr> <tr> <td>…</td> <td>……</td> </tr> </table> Structure of table: <table> <tr> <th>…..</th> <td>……</td> </tr> </table> Attributes: Align, valign, width, border,cellpadding, cellspacing, colspan, rowspan
  • 23. FRAMES Structure; <frameset > <frame> </frame> </frameset> Attributes of <frameset>: Rows,Cols Attributes of <frame>: Src,MarginHeight,Margin Width,Name,Noresize,Scr olling Example: <frameset rows=“30%,*”> <frameset cols=“50%,50%”> <frame src=“file1.html” name=“main”> <frame src=“file2.html” marginheight=“100” scrolling=no> </frameset> <frameset cols=“50%,50%”> <frame src=“file3.html”> <frame src=“file4.html”> </frameset> </frameset>
  • 24. FORMS Tag used:<form></form> Form Elements: Text, Password, Button, Checkbox, Radio, Reset, Submit, Select,TextArea, Hidden Attributes: Name,action,value Example: <form name=“form” action=post value=“url”> <input type=text name=t1> <input type=button name=b1 value=Click>Click </form>