SlideShare ist ein Scribd-Unternehmen logo
1 von 27
Downloaden Sie, um offline zu lesen
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

Weitere ähnliche Inhalte

Was ist angesagt?

Introduction to Web Development
Introduction to Web DevelopmentIntroduction to Web Development
Introduction to Web DevelopmentParvez Mahbub
 
Web browser and web server
Web browser and web serverWeb browser and web server
Web browser and web serverNimra Imtiaz
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to htmleShikshak
 
Presentation on web browser
Presentation on web browserPresentation on web browser
Presentation on web browserSwasat Dutta
 
Web development tool
Web development toolWeb development tool
Web development toolDeep Bhavsar
 
Java layoutmanager
Java layoutmanagerJava layoutmanager
Java layoutmanagerArati Gadgil
 
screen output and keyboard input in js
screen output and keyboard input in jsscreen output and keyboard input in js
screen output and keyboard input in jschauhankapil
 
Internet basics
Internet basicsInternet basics
Internet basicsosuchin
 
Javascript operators
Javascript operatorsJavascript operators
Javascript operatorsMohit Rana
 
Mobile Apps Design Principles
Mobile Apps Design PrinciplesMobile Apps Design Principles
Mobile Apps Design PrinciplesMohamad Sani
 
Web designing(unit 1) Part 1
Web designing(unit 1) Part 1Web designing(unit 1) Part 1
Web designing(unit 1) Part 1SURBHI SAROHA
 

Was ist angesagt? (20)

Html list
Html listHtml list
Html list
 
Introduction to Web Development
Introduction to Web DevelopmentIntroduction to Web Development
Introduction to Web Development
 
Css position
Css positionCss position
Css position
 
Web browser and web server
Web browser and web serverWeb browser and web server
Web browser and web server
 
Introduction to html
Introduction to htmlIntroduction to html
Introduction to html
 
Presentation on web browser
Presentation on web browserPresentation on web browser
Presentation on web browser
 
Web Development
Web DevelopmentWeb Development
Web Development
 
world wide web
world wide webworld wide web
world wide web
 
Web development tool
Web development toolWeb development tool
Web development tool
 
HTML Tags
HTML TagsHTML Tags
HTML Tags
 
Java layoutmanager
Java layoutmanagerJava layoutmanager
Java layoutmanager
 
screen output and keyboard input in js
screen output and keyboard input in jsscreen output and keyboard input in js
screen output and keyboard input in js
 
Internet basics
Internet basicsInternet basics
Internet basics
 
Javascript operators
Javascript operatorsJavascript operators
Javascript operators
 
Mobile Apps Design Principles
Mobile Apps Design PrinciplesMobile Apps Design Principles
Mobile Apps Design Principles
 
Introduction to JavaScript Basics.
Introduction to JavaScript Basics.Introduction to JavaScript Basics.
Introduction to JavaScript Basics.
 
Java script
Java scriptJava script
Java script
 
Basics of JavaScript
Basics of JavaScriptBasics of JavaScript
Basics of JavaScript
 
Web designing(unit 1) Part 1
Web designing(unit 1) Part 1Web designing(unit 1) Part 1
Web designing(unit 1) Part 1
 
Html link and list tags
Html link and list tagsHtml link and list tags
Html link and list tags
 

Ähnlich wie web programming & scripting

L06IntroToWebHTML (1).ppt
L06IntroToWebHTML (1).pptL06IntroToWebHTML (1).ppt
L06IntroToWebHTML (1).pptssuser9125861
 
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.docxMartin Mulwa
 
Introduction to Web Programming - first course
Introduction to Web Programming - first courseIntroduction to Web Programming - first course
Introduction to Web Programming - first courseVlad Posea
 
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 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 1ArunsunaiComputer
 
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 DevelopmentBhargaviDalal4
 
How the internet_works
How the internet_worksHow the internet_works
How the internet_worksarun nalam
 

Ähnlich wie 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
 
Introduction to Web Programming - first course
Introduction to Web Programming - first courseIntroduction to Web Programming - first course
Introduction to Web Programming - first course
 
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
 
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
 

Mehr von 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 ComputingSwapnali Pawar
 
Unit 2.design mobile computing architecture
Unit 2.design mobile computing architectureUnit 2.design mobile computing architecture
Unit 2.design mobile computing architectureSwapnali Pawar
 
Fresher interview tips demo
Fresher interview tips demoFresher interview tips demo
Fresher interview tips demoSwapnali Pawar
 
Introduction to android
Introduction to androidIntroduction to android
Introduction to androidSwapnali 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.1Swapnali 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 MC1514Swapnali Pawar
 
Design computing architecture ~ Mobile Technologies
Design computing architecture ~ Mobile TechnologiesDesign computing architecture ~ Mobile Technologies
Design computing architecture ~ Mobile TechnologiesSwapnali Pawar
 
Mobile technology-Unit 1
Mobile technology-Unit 1Mobile technology-Unit 1
Mobile technology-Unit 1Swapnali Pawar
 
Web Programming& Scripting Lab
Web Programming& Scripting LabWeb Programming& Scripting Lab
Web Programming& Scripting LabSwapnali Pawar
 
Database Management System 1
Database Management System 1Database Management System 1
Database Management System 1Swapnali Pawar
 
web programming & scripting 2
web programming & scripting 2web programming & scripting 2
web programming & scripting 2Swapnali Pawar
 

Mehr von 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
 

Kürzlich hochgeladen

4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptxmary850239
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptxmary850239
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPCeline George
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17Celine George
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxMusic 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxleah joy valeriano
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxVanesaIglesias10
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYKayeClaireEstoconing
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)cama23
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptshraddhaparab530
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfErwinPantujan2
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationRosabel UA
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4JOYLYNSAMANIEGO
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...JhezDiaz1
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 

Kürzlich hochgeladen (20)

4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx4.16.24 21st Century Movements for Black Lives.pptx
4.16.24 21st Century Movements for Black Lives.pptx
 
4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx4.16.24 Poverty and Precarity--Desmond.pptx
4.16.24 Poverty and Precarity--Desmond.pptx
 
How to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERPHow to do quick user assign in kanban in Odoo 17 ERP
How to do quick user assign in kanban in Odoo 17 ERP
 
How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17How to Add Barcode on PDF Report in Odoo 17
How to Add Barcode on PDF Report in Odoo 17
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptxMusic 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
Music 9 - 4th quarter - Vocal Music of the Romantic Period.pptx
 
ROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptxROLES IN A STAGE PRODUCTION in arts.pptx
ROLES IN A STAGE PRODUCTION in arts.pptx
 
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITYISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
ISYU TUNGKOL SA SEKSWLADIDA (ISSUE ABOUT SEXUALITY
 
Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)Global Lehigh Strategic Initiatives (without descriptions)
Global Lehigh Strategic Initiatives (without descriptions)
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Integumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.pptIntegumentary System SMP B. Pharm Sem I.ppt
Integumentary System SMP B. Pharm Sem I.ppt
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdfVirtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
Virtual-Orientation-on-the-Administration-of-NATG12-NATG6-and-ELLNA.pdf
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
Activity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translationActivity 2-unit 2-update 2024. English translation
Activity 2-unit 2-update 2024. English translation
 
Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4Daily Lesson Plan in Mathematics Quarter 4
Daily Lesson Plan in Mathematics Quarter 4
 
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
ENGLISH 7_Q4_LESSON 2_ Employing a Variety of Strategies for Effective Interp...
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 

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