SlideShare a Scribd company logo
Swapnali Pawar
Swapnali Pawar
Swapnali Pawar
S R. Pawar
Swapnali Pawar
Overview of Internet Technology
• Internet
• Website
• WWW
• Server
• Client
• IP Address
• TCP/IP Protocol
Swapnali Pawar
Internet
The Internet is the global system of interconnected computer
networks that uses the Internet protocol suite (TCP/IP) to
communicate between networks and devices
Swapnali Pawar
How Internet Works
Swapnali Pawar
https://www.submarinecablemap.com/
Swapnali Pawar
WWW
The World Wide Web (WWW), commonly known as the Web, is
an information system where documents and other web resources are
identified by Uniform Resource Locators (URLs, such
as https://example.com/), which may be interlinked by hyperlinks,
and are accessible over the Internet
Swapnali Pawar
Client Server Architecture of Internet
Swapnali Pawar
By October of 1990, Tim had written the three fundamental technologies that remain the
foundation of today’s web (and which you may have seen appear on parts of your web
browser):
HTML: HyperText Markup Language. The markup (formatting) language for the web.
URI: Uniform Resource Identifier. A kind of “address” that is unique and used to identify
to each resource on the web. It is also commonly called a URL.
HTTP: Hypertext Transfer Protocol. Allows for the retrieval of linked resources from
across the web.
History
Swapnali Pawar
Server, Client, IP Address,TCP/IP Protocol
TCP/IP protocols -
TCP/IP is a family of communication protocols used to connect computer systems in a
network. It is named after two of the protocols in the family: Transmission Control Protocol
(TCP) and Internet Protocol (IP). Hypertext Transfer Protocol (HTTP) is a member of the
TCP/IP family.
IP address-
Each server or client on a TCP/IP internet is identified by a numeric IP (Internet Protocol)
address. The two types of IP address are the IPv4 (IP version 4) address and the IPv6 (IP
version 6) address.
Swapnali Pawar
Website
A set of related web pages located under a single domain name,
typically produced by a single person or organization.
Web Application:
The applications which will provide services over the web are called web
applications.
Eg: twitter , gmail.com, facebook.com,
Swapnali Pawar
Web Application
Every web application contains 2 main components
1) Front-End
2) Back-End
1. Front end:
It represents what end user is seeing on the website.
We can develop front end components by using :
HTML,CSS,JS,BootStrap,jQuery etc
2. Back end:
It is technology which is used to decide what to show to end user on the
front end.
back end is responsible to generate required response
That response should be displayed to the end user by using front end.
Java,Python,SQL,Oracle,Flask,Django etc.
Swapnali Pawar
Detail Study of HTML
1. What is HTML
2. History
3. Creating installing viewing and checking web
pages
4. TAGS
5. Core HTML elements
6. Presentation & Layout
Swapnali Pawar
HTML
HTML is the standard markup language for creating Web pages.
What is HTML?
HTML stands for Hyper Text Markup Language
HTML is the standard markup language for creating Web pages
HTML describes the structure of a Web page
HTML consists of a series of elements
HTML elements tell the browser how to display the content
HTML elements label pieces of content such as "this is a
heading", "this is a paragraph", "this is a link", etc
Swapnali Pawar
Structure of HTML Page
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
Swapnali Pawar
HTML Tags
1.HTML Comment
<!—This is HTML comment-->
2.Title
<head>
<Title> Mysite Title</Title>
</head>
3.Paragraph
<p>
My paragraph is here…….
</p> Swapnali Pawar
5.Bold & Italic
<b>Bold</b> For bold
<i> Italic</i> For Italic
6.Advanced Tags
<Strong> For bold </Strong>
<em> For Italic </em>
4.Paragraph
<p>My paragraph is here…….</p>
<p> First Line </p>
<p> Second line </p>
<p> Third Line </p>
Swapnali Pawar
7. HTML Lists-
1.Ordered List
2.Unordered List
1.Ordered List-All Items will be displayed with Numbers
<ol>
<li>Pizza</li>
<li>Burger</li>
<li>Tea</li>
</ol>
2.Unordered List- All Items will be displayed with bullet symbols
<ul>
<li>Pen</li>
<li>Pencil</li>
<li>Rubber</li>
</ul> Swapnali Pawar
8.Div & Span – We can use div & span tags to group related tags
into single unit. This tags generally used with css.
<div class=“group1”>
<h1> Hello friends……..</h1>
<p> Good Afternoon…… </p>
</div>
9. Span – This tag is exactly same as div tag except that it is inline
<p> This is <span> Inline Tag </span> used in other tags</p>
10. Img – This tag is used to display image.
<img src=“photo,jpg” alt=“Image will be uploaded soon….”>
Swapnali Pawar
11. Hyperlink – Used to navigate to another page or link.
<a href=“https://facebook.com”>Facebook</a>
12.Background Color
<h1 style="background-color:DodgerBlue;">Hello World</h1>
<p style="background-color:Tomato;">Good Morning...</p>
13.Text Color
<h1 style="color:Tomato;">Hello World</h1>
<p style="color:DodgerBlue;">Welcome to...</p>
<p style="color:MediumSeaGreen;">Web Programming...</p>
Swapnali Pawar
14.Table-
HTML tables allow web developers to arrange data into rows and
columns
<table>
<thead>
<th>Roll No</th>
<th>Student Name</th>
<th>Marks</th>
</thead>
<tr>
<td>101</td>
<td>Swapnali</td>
<td>76%</td>
</tr>
</table>
Swapnali Pawar
Html Example
<html>
<head>
<Title>Web Programming</Title>
</head>
<body>
<center>
<h1 style="background-color:DodgerBlue;">Web Programming & Scripting A1</h1>
<h2 style="color:Tomato;">Html Basics practical Sessions...</h2>
<hr>
<br>
<img src=https://images.unsplash.com/photo-1507238691740-
187a5b1d37b8?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MzJ8fHdlYiUyMHByb2dyYW1taWd8ZW58MHx8
MHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=400&q=60 alt="uploded soon..." height="300"
width="400">
<hr>
<table border=2>
<thead>
<th>Technology</th>
<th>Resourses</th>
</thead>
<tr>
<td>HTML</td>
<td><a href="https://www.w3schools.com/html/">html</a></td>
</tr>
<tr>
<td>CSS</td>
<td><a href="https://www.w3schools.com/css/default.asp"> css</a></td>
</tr>
<tr>
<td>BOOTSTRAP</td>
<td><a href="https://getbootstrap.com/">bootsrap</a></td>
</tr>
</table>
<hr>
</center>
</body>
</html>
Swapnali Pawar
HTML Sample Page
Swapnali Pawar
Student Activity
Experiment 1 – To create webpage using basic Html tags.
Create personal webpage with your academic information and
your photo like resume
Useful Resources-
1. https://atom.io/
2. https://www.w3schools.com/html/
3. https://unsplash.com/
4. https://in.000webhost.com/
Swapnali Pawar
Swapnali Pawar

More Related Content

What's hot

Html links
Html linksHtml links
Html links
JayjZens
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
Shawn Calvert
 
Span and Div tags in HTML
Span and Div tags in HTMLSpan and Div tags in HTML
Span and Div tags in HTML
Biswadip Goswami
 
Web Development
Web DevelopmentWeb Development
Web Development
Aditya Raman
 
Active browser web page
Active browser web pageActive browser web page
Active browser web page
Zee1481
 
Html ppt
Html pptHtml ppt
Html ppt
santosh lamba
 
Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)
AakankshaR
 
Website Management
Website ManagementWebsite Management
Website ManagementAmol Vidwans
 
CSS Font & Text style
CSS Font & Text style CSS Font & Text style
CSS Font & Text style
Yaowaluck Promdee
 
Introduction to Web Development
Introduction to Web DevelopmentIntroduction to Web Development
Introduction to Web Development
Parvez Mahbub
 
How to build a website
How to build a websiteHow to build a website
How to build a website
Bloxup
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
Sayan De
 
Web Page Designing Using HTML
Web Page Designing Using HTMLWeb Page Designing Using HTML
Web Page Designing Using HTML
Arunima Education Foundation
 
Web Design & Development - Session 1
Web Design & Development - Session 1Web Design & Development - Session 1
Web Design & Development - Session 1
Shahrzad Peyman
 
HTML CSS and Web Development
HTML CSS and Web DevelopmentHTML CSS and Web Development
HTML CSS and Web Development
Rahul Mishra
 
Web Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScriptWeb Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScript
Edureka!
 
jQuery for beginners
jQuery for beginnersjQuery for beginners
jQuery for beginners
Arulmurugan Rajaraman
 

What's hot (20)

HTML5 & CSS3
HTML5 & CSS3 HTML5 & CSS3
HTML5 & CSS3
 
Html links
Html linksHtml links
Html links
 
Html / CSS Presentation
Html / CSS PresentationHtml / CSS Presentation
Html / CSS Presentation
 
Span and Div tags in HTML
Span and Div tags in HTMLSpan and Div tags in HTML
Span and Div tags in HTML
 
Web Development
Web DevelopmentWeb Development
Web Development
 
Active browser web page
Active browser web pageActive browser web page
Active browser web page
 
Html ppt
Html pptHtml ppt
Html ppt
 
Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)Cascading Style Sheet (CSS)
Cascading Style Sheet (CSS)
 
Website Management
Website ManagementWebsite Management
Website Management
 
Html-list
Html-listHtml-list
Html-list
 
CSS Font & Text style
CSS Font & Text style CSS Font & Text style
CSS Font & Text style
 
Introduction to Web Development
Introduction to Web DevelopmentIntroduction to Web Development
Introduction to Web Development
 
How to build a website
How to build a websiteHow to build a website
How to build a website
 
Html list
Html listHtml list
Html list
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
Web Page Designing Using HTML
Web Page Designing Using HTMLWeb Page Designing Using HTML
Web Page Designing Using HTML
 
Web Design & Development - Session 1
Web Design & Development - Session 1Web Design & Development - Session 1
Web Design & Development - Session 1
 
HTML CSS and Web Development
HTML CSS and Web DevelopmentHTML CSS and Web Development
HTML CSS and Web Development
 
Web Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScriptWeb Development with HTML5, CSS3 & JavaScript
Web Development with HTML5, CSS3 & JavaScript
 
jQuery for beginners
jQuery for beginnersjQuery for beginners
jQuery for beginners
 

Similar to web programming & scripting

L06IntroToWebHTML (1).ppt
L06IntroToWebHTML (1).pptL06IntroToWebHTML (1).ppt
L06IntroToWebHTML (1).ppt
ssuser9125861
 
ICS 2203-WEB APPLICATION DEVELOPMENT-EDUC Y2S1_MATHCOMP.docx
ICS 2203-WEB APPLICATION DEVELOPMENT-EDUC Y2S1_MATHCOMP.docxICS 2203-WEB APPLICATION DEVELOPMENT-EDUC Y2S1_MATHCOMP.docx
ICS 2203-WEB APPLICATION DEVELOPMENT-EDUC Y2S1_MATHCOMP.docx
Martin Mulwa
 
Web Browsers.pptx
Web Browsers.pptxWeb Browsers.pptx
Web Browsers.pptx
HariomMangal1
 
Protocols and standards (http , html, xhtml, cgi, xml, wml, c html, etc)
Protocols and standards (http , html, xhtml, cgi, xml, wml, c html, etc)Protocols and standards (http , html, xhtml, cgi, xml, wml, c html, etc)
Protocols and standards (http , html, xhtml, cgi, xml, wml, c html, etc)
techlovers3
 
Web Programming introduction
Web Programming introductionWeb Programming introduction
Web Programming introduction
Abdul-Rahman Mahmood
 
Web topic 1 internet
Web topic 1  internetWeb topic 1  internet
Web topic 1 internetCK Yang
 
IT8005 Electronic Commerces Notes UNIT 1
IT8005 Electronic Commerces Notes UNIT 1IT8005 Electronic Commerces Notes UNIT 1
IT8005 Electronic Commerces Notes UNIT 1
ArunsunaiComputer
 
Web Designing
Web Designing Web Designing
Web Designing
Sachidananda M H
 
Webtechnologies
Webtechnologies Webtechnologies
Webtechnologies
-jyothish kumar sirigidi
 
Introduction to Web Technology and Web Page Development
Introduction to Web Technology and Web Page DevelopmentIntroduction to Web Technology and Web Page Development
Introduction to Web Technology and Web Page Development
BhargaviDalal4
 
Introduction to HTML and HTTP web designing
Introduction to HTML and HTTP web designingIntroduction to HTML and HTTP web designing
Introduction to HTML and HTTP web designing
divyapatel123440
 
unit 1(chapter1).pdf
unit 1(chapter1).pdfunit 1(chapter1).pdf
unit 1(chapter1).pdf
ArunArun542872
 
Html
HtmlHtml
Html
kousika
 
How the internet_works
How the internet_worksHow the internet_works
How the internet_worksarun nalam
 

Similar to web programming & scripting (20)

L06IntroToWebHTML (1).ppt
L06IntroToWebHTML (1).pptL06IntroToWebHTML (1).ppt
L06IntroToWebHTML (1).ppt
 
Unit 2.1 Part 4
Unit 2.1 Part 4Unit 2.1 Part 4
Unit 2.1 Part 4
 
Basic HTML
Basic HTMLBasic HTML
Basic HTML
 
5-WebServers.ppt
5-WebServers.ppt5-WebServers.ppt
5-WebServers.ppt
 
ICS 2203-WEB APPLICATION DEVELOPMENT-EDUC Y2S1_MATHCOMP.docx
ICS 2203-WEB APPLICATION DEVELOPMENT-EDUC Y2S1_MATHCOMP.docxICS 2203-WEB APPLICATION DEVELOPMENT-EDUC Y2S1_MATHCOMP.docx
ICS 2203-WEB APPLICATION DEVELOPMENT-EDUC Y2S1_MATHCOMP.docx
 
Web Browsers.pptx
Web Browsers.pptxWeb Browsers.pptx
Web Browsers.pptx
 
Protocols and standards (http , html, xhtml, cgi, xml, wml, c html, etc)
Protocols and standards (http , html, xhtml, cgi, xml, wml, c html, etc)Protocols and standards (http , html, xhtml, cgi, xml, wml, c html, etc)
Protocols and standards (http , html, xhtml, cgi, xml, wml, c html, etc)
 
5-WebServers.ppt
5-WebServers.ppt5-WebServers.ppt
5-WebServers.ppt
 
Web Programming introduction
Web Programming introductionWeb Programming introduction
Web Programming introduction
 
Web topic 1 internet
Web topic 1  internetWeb topic 1  internet
Web topic 1 internet
 
IT8005 Electronic Commerces Notes UNIT 1
IT8005 Electronic Commerces Notes UNIT 1IT8005 Electronic Commerces Notes UNIT 1
IT8005 Electronic Commerces Notes UNIT 1
 
Web Designing
Web Designing Web Designing
Web Designing
 
Iwt module 1
Iwt  module 1Iwt  module 1
Iwt module 1
 
Webtechnologies
Webtechnologies Webtechnologies
Webtechnologies
 
Introduction to Web Technology and Web Page Development
Introduction to Web Technology and Web Page DevelopmentIntroduction to Web Technology and Web Page Development
Introduction to Web Technology and Web Page Development
 
Introduction to HTML and HTTP web designing
Introduction to HTML and HTTP web designingIntroduction to HTML and HTTP web designing
Introduction to HTML and HTTP web designing
 
unit 1(chapter1).pdf
unit 1(chapter1).pdfunit 1(chapter1).pdf
unit 1(chapter1).pdf
 
Html
HtmlHtml
Html
 
How the internet_works
How the internet_worksHow the internet_works
How the internet_works
 
Unit 01 (1).pdf
Unit 01 (1).pdfUnit 01 (1).pdf
Unit 01 (1).pdf
 

More from Swapnali Pawar

Unit 3 introduction to android
Unit 3 introduction to android Unit 3 introduction to android
Unit 3 introduction to android
Swapnali Pawar
 
Unit 1-Introduction to Mobile Computing
Unit 1-Introduction to Mobile ComputingUnit 1-Introduction to Mobile Computing
Unit 1-Introduction to Mobile Computing
Swapnali Pawar
 
Unit 2.design mobile computing architecture
Unit 2.design mobile computing architectureUnit 2.design mobile computing architecture
Unit 2.design mobile computing architecture
Swapnali Pawar
 
Introduction to ios
Introduction to iosIntroduction to ios
Introduction to ios
Swapnali Pawar
 
Fresher interview tips demo
Fresher interview tips demoFresher interview tips demo
Fresher interview tips demo
Swapnali Pawar
 
View & index in SQL
View & index in SQLView & index in SQL
View & index in SQL
Swapnali Pawar
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to android
Swapnali Pawar
 
Android Introduction
Android IntroductionAndroid Introduction
Android Introduction
Swapnali Pawar
 
SQL JOINS
SQL JOINSSQL JOINS
SQL JOINS
Swapnali Pawar
 
Unit 2.design computing architecture 2.1
Unit 2.design computing architecture 2.1Unit 2.design computing architecture 2.1
Unit 2.design computing architecture 2.1
Swapnali Pawar
 
Unit 2 Design mobile computing architecture MC1514
Unit 2 Design mobile computing architecture MC1514Unit 2 Design mobile computing architecture MC1514
Unit 2 Design mobile computing architecture MC1514
Swapnali Pawar
 
Design computing architecture ~ Mobile Technologies
Design computing architecture ~ Mobile TechnologiesDesign computing architecture ~ Mobile Technologies
Design computing architecture ~ Mobile Technologies
Swapnali Pawar
 
Exception Handling
Exception Handling Exception Handling
Exception Handling
Swapnali Pawar
 
Mobile technology-Unit 1
Mobile technology-Unit 1Mobile technology-Unit 1
Mobile technology-Unit 1
Swapnali Pawar
 
Mobile Technology 3
Mobile Technology 3Mobile Technology 3
Mobile Technology 3
Swapnali Pawar
 
Web Programming& Scripting Lab
Web Programming& Scripting LabWeb Programming& Scripting Lab
Web Programming& Scripting Lab
Swapnali Pawar
 
Mobile Technology
Mobile TechnologyMobile Technology
Mobile Technology
Swapnali Pawar
 
Mobile Technology
Mobile TechnologyMobile Technology
Mobile Technology
Swapnali Pawar
 
Database Management System 1
Database Management System 1Database Management System 1
Database Management System 1
Swapnali Pawar
 
web programming & scripting 2
web programming & scripting 2web programming & scripting 2
web programming & scripting 2
Swapnali Pawar
 

More from Swapnali Pawar (20)

Unit 3 introduction to android
Unit 3 introduction to android Unit 3 introduction to android
Unit 3 introduction to android
 
Unit 1-Introduction to Mobile Computing
Unit 1-Introduction to Mobile ComputingUnit 1-Introduction to Mobile Computing
Unit 1-Introduction to Mobile Computing
 
Unit 2.design mobile computing architecture
Unit 2.design mobile computing architectureUnit 2.design mobile computing architecture
Unit 2.design mobile computing architecture
 
Introduction to ios
Introduction to iosIntroduction to ios
Introduction to ios
 
Fresher interview tips demo
Fresher interview tips demoFresher interview tips demo
Fresher interview tips demo
 
View & index in SQL
View & index in SQLView & index in SQL
View & index in SQL
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to android
 
Android Introduction
Android IntroductionAndroid Introduction
Android Introduction
 
SQL JOINS
SQL JOINSSQL JOINS
SQL JOINS
 
Unit 2.design computing architecture 2.1
Unit 2.design computing architecture 2.1Unit 2.design computing architecture 2.1
Unit 2.design computing architecture 2.1
 
Unit 2 Design mobile computing architecture MC1514
Unit 2 Design mobile computing architecture MC1514Unit 2 Design mobile computing architecture MC1514
Unit 2 Design mobile computing architecture MC1514
 
Design computing architecture ~ Mobile Technologies
Design computing architecture ~ Mobile TechnologiesDesign computing architecture ~ Mobile Technologies
Design computing architecture ~ Mobile Technologies
 
Exception Handling
Exception Handling Exception Handling
Exception Handling
 
Mobile technology-Unit 1
Mobile technology-Unit 1Mobile technology-Unit 1
Mobile technology-Unit 1
 
Mobile Technology 3
Mobile Technology 3Mobile Technology 3
Mobile Technology 3
 
Web Programming& Scripting Lab
Web Programming& Scripting LabWeb Programming& Scripting Lab
Web Programming& Scripting Lab
 
Mobile Technology
Mobile TechnologyMobile Technology
Mobile Technology
 
Mobile Technology
Mobile TechnologyMobile Technology
Mobile Technology
 
Database Management System 1
Database Management System 1Database Management System 1
Database Management System 1
 
web programming & scripting 2
web programming & scripting 2web programming & scripting 2
web programming & scripting 2
 

Recently uploaded

Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
Levi Shapiro
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
SACHIN R KONDAGURI
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
CarlosHernanMontoyab2
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
timhan337
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
BhavyaRajput3
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Po-Chuan Chen
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Atul Kumar Singh
 

Recently uploaded (20)

Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
June 3, 2024 Anti-Semitism Letter Sent to MIT President Kornbluth and MIT Cor...
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
"Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe..."Protectable subject matters, Protection in biotechnology, Protection of othe...
"Protectable subject matters, Protection in biotechnology, Protection of othe...
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf678020731-Sumas-y-Restas-Para-Colorear.pdf
678020731-Sumas-y-Restas-Para-Colorear.pdf
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Honest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptxHonest Reviews of Tim Han LMA Course Program.pptx
Honest Reviews of Tim Han LMA Course Program.pptx
 
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCECLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
CLASS 11 CBSE B.St Project AIDS TO TRADE - INSURANCE
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdfAdversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
Adversarial Attention Modeling for Multi-dimensional Emotion Regression.pdf
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
 

web programming & scripting

  • 5. Overview of Internet Technology • Internet • Website • WWW • Server • Client • IP Address • TCP/IP Protocol Swapnali Pawar
  • 6. Internet The Internet is the global system of interconnected computer networks that uses the Internet protocol suite (TCP/IP) to communicate between networks and devices Swapnali Pawar
  • 9. WWW The World Wide Web (WWW), commonly known as the Web, is an information system where documents and other web resources are identified by Uniform Resource Locators (URLs, such as https://example.com/), which may be interlinked by hyperlinks, and are accessible over the Internet Swapnali Pawar
  • 10. Client Server Architecture of Internet Swapnali Pawar
  • 11. By October of 1990, Tim had written the three fundamental technologies that remain the foundation of today’s web (and which you may have seen appear on parts of your web browser): HTML: HyperText Markup Language. The markup (formatting) language for the web. URI: Uniform Resource Identifier. A kind of “address” that is unique and used to identify to each resource on the web. It is also commonly called a URL. HTTP: Hypertext Transfer Protocol. Allows for the retrieval of linked resources from across the web. History Swapnali Pawar
  • 12. Server, Client, IP Address,TCP/IP Protocol TCP/IP protocols - TCP/IP is a family of communication protocols used to connect computer systems in a network. It is named after two of the protocols in the family: Transmission Control Protocol (TCP) and Internet Protocol (IP). Hypertext Transfer Protocol (HTTP) is a member of the TCP/IP family. IP address- Each server or client on a TCP/IP internet is identified by a numeric IP (Internet Protocol) address. The two types of IP address are the IPv4 (IP version 4) address and the IPv6 (IP version 6) address. Swapnali Pawar
  • 13. Website A set of related web pages located under a single domain name, typically produced by a single person or organization. Web Application: The applications which will provide services over the web are called web applications. Eg: twitter , gmail.com, facebook.com, Swapnali Pawar
  • 14. Web Application Every web application contains 2 main components 1) Front-End 2) Back-End 1. Front end: It represents what end user is seeing on the website. We can develop front end components by using : HTML,CSS,JS,BootStrap,jQuery etc 2. Back end: It is technology which is used to decide what to show to end user on the front end. back end is responsible to generate required response That response should be displayed to the end user by using front end. Java,Python,SQL,Oracle,Flask,Django etc. Swapnali Pawar
  • 15. Detail Study of HTML 1. What is HTML 2. History 3. Creating installing viewing and checking web pages 4. TAGS 5. Core HTML elements 6. Presentation & Layout Swapnali Pawar
  • 16. HTML HTML is the standard markup language for creating Web pages. What is HTML? HTML stands for Hyper Text Markup Language HTML is the standard markup language for creating Web pages HTML describes the structure of a Web page HTML consists of a series of elements HTML elements tell the browser how to display the content HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc Swapnali Pawar
  • 17. Structure of HTML Page <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <h1>My First Heading</h1> <p>My first paragraph.</p> </body> </html> Swapnali Pawar
  • 18. HTML Tags 1.HTML Comment <!—This is HTML comment--> 2.Title <head> <Title> Mysite Title</Title> </head> 3.Paragraph <p> My paragraph is here……. </p> Swapnali Pawar
  • 19. 5.Bold & Italic <b>Bold</b> For bold <i> Italic</i> For Italic 6.Advanced Tags <Strong> For bold </Strong> <em> For Italic </em> 4.Paragraph <p>My paragraph is here…….</p> <p> First Line </p> <p> Second line </p> <p> Third Line </p> Swapnali Pawar
  • 20. 7. HTML Lists- 1.Ordered List 2.Unordered List 1.Ordered List-All Items will be displayed with Numbers <ol> <li>Pizza</li> <li>Burger</li> <li>Tea</li> </ol> 2.Unordered List- All Items will be displayed with bullet symbols <ul> <li>Pen</li> <li>Pencil</li> <li>Rubber</li> </ul> Swapnali Pawar
  • 21. 8.Div & Span – We can use div & span tags to group related tags into single unit. This tags generally used with css. <div class=“group1”> <h1> Hello friends……..</h1> <p> Good Afternoon…… </p> </div> 9. Span – This tag is exactly same as div tag except that it is inline <p> This is <span> Inline Tag </span> used in other tags</p> 10. Img – This tag is used to display image. <img src=“photo,jpg” alt=“Image will be uploaded soon….”> Swapnali Pawar
  • 22. 11. Hyperlink – Used to navigate to another page or link. <a href=“https://facebook.com”>Facebook</a> 12.Background Color <h1 style="background-color:DodgerBlue;">Hello World</h1> <p style="background-color:Tomato;">Good Morning...</p> 13.Text Color <h1 style="color:Tomato;">Hello World</h1> <p style="color:DodgerBlue;">Welcome to...</p> <p style="color:MediumSeaGreen;">Web Programming...</p> Swapnali Pawar
  • 23. 14.Table- HTML tables allow web developers to arrange data into rows and columns <table> <thead> <th>Roll No</th> <th>Student Name</th> <th>Marks</th> </thead> <tr> <td>101</td> <td>Swapnali</td> <td>76%</td> </tr> </table> Swapnali Pawar
  • 24. Html Example <html> <head> <Title>Web Programming</Title> </head> <body> <center> <h1 style="background-color:DodgerBlue;">Web Programming & Scripting A1</h1> <h2 style="color:Tomato;">Html Basics practical Sessions...</h2> <hr> <br> <img src=https://images.unsplash.com/photo-1507238691740- 187a5b1d37b8?ixid=MnwxMjA3fDB8MHxzZWFyY2h8MzJ8fHdlYiUyMHByb2dyYW1taWd8ZW58MHx8 MHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=400&q=60 alt="uploded soon..." height="300" width="400"> <hr> <table border=2> <thead> <th>Technology</th> <th>Resourses</th> </thead> <tr> <td>HTML</td> <td><a href="https://www.w3schools.com/html/">html</a></td> </tr> <tr> <td>CSS</td> <td><a href="https://www.w3schools.com/css/default.asp"> css</a></td> </tr> <tr> <td>BOOTSTRAP</td> <td><a href="https://getbootstrap.com/">bootsrap</a></td> </tr> </table> <hr> </center> </body> </html> Swapnali Pawar
  • 26. Student Activity Experiment 1 – To create webpage using basic Html tags. Create personal webpage with your academic information and your photo like resume Useful Resources- 1. https://atom.io/ 2. https://www.w3schools.com/html/ 3. https://unsplash.com/ 4. https://in.000webhost.com/ Swapnali Pawar