SlideShare a Scribd company logo
1 of 25
GDSC – Fayoum University
2022 – 2023
WEB Development Introduction
What is Web Development?
Web development is the process of building and maintaining a website for
the internet or an intranet that is accessed through a web
browser and hosted on a server, either on on-premises hardware or in
the cloud. This includes everything from single plain-text webpages up to
complex web applications.
CODING
Web developers build websites by coding using different programming
languages. These languages consist of unique vocabularies, syntax
and commands that define the visual representation and functionality of
websites. Which language is used for development depends on
the platform, operating system or style of the website.
Some of the most common coding languages
include the following:
HTML
CSS
JavaScript
Python
C/C++
C#
What is HTTP?
-HTTP stands for Hyper Text Transfer Protocol
-WWW is about communication between web clients and servers
-Communication between client computers and web servers is done by
sending HTTP Requests and receiving HTTP Responses
World Wide Web Communication
-The World Wide Web is about communication between
web clients and web servers.
-Clients are often browsers (Chrome, Edge, Safari), but
they can be any type of program or device.
-Servers are most often computers in the cloud.
HTTP Request / Response
Communication between clients and servers is done
by requests and responses:
1- A client (a browser) sends an HTTP request to the web
2- A web server receives the request
3- The server runs an application to process the request
4- The server returns an HTTP response (output) to the
browser
5- The client (the browser) receives the response
What is a web browser?
• A web browser is a computer program that allows users to view
information, graphics, interactive pages and videos on the
Internet. Web browsers also know how to communicate with
web servers that host websites and pages that are transmitted to
computers.
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.
The <!DOCTYPE html> declaration defines that this document is an HTML5
document
The <html> element is the root element of an HTML page
The <head> element contains meta information about the HTML page
The <title> element specifies a title for the HTML page (which is shown in
the browser's title bar or in the page's tab)
The <body> element defines the document's body, and is a container for all
the visible contents, such as headings, paragraphs, images, hyperlinks,
tables, lists, etc.
The <h1> element defines a large heading
The <p> element defines a paragraph
What is an HTML Element?
An HTML element is defined by a start tag, some content,
and an end tag:
<tagname> Content goes here... </tagname>
The HTML element is everything from the start tag to the
end tag:
<h1>My First Heading</h1>
<p>My first paragraph.</p>
HTML page structure
Empty HTML Elements
HTML elements with no content are called empty elements.
The <br> tag defines a line break, and is an empty element without a
closing tag.
<HTML> statements….<HTML>
●HTML tag: It is the root of the HTML document which is used to specify that the
document is HTML.
Document structure tags:
<head> statements….<head>
●Head tag: is used to contain all the head elements in the HTML file. It contains
the title, style, meta, … etc.
<body> statements….<body>
●Body tag: It is used to define the body of an HTML document. It contains images,
tables, lists, … etc.
<title> name of the page.. <t/itle>
●Title tag: It is used to define the title of an HTML document.
Head tags:
<meta >
●Meta tag: It is used to specify the page description.
<h1> name of the page.. </h1>
●Heading tag: It is used to define the heading of an HTML document.
Body tags:
<p> Statements ... </p>
●Paragraph tag: It is used to define paragraph content in an HTML document.
 i
 b
 em
 u
 strike
 Small
 span
 pre
Other tags :
●Anchor tag: It is used to link one page to another page.
<a href ="url.."> statement.. </a>
<hr width ="val.." size ="val..">
●Horizontal rule tag: It is used to display the horizontal line in an HTML document.
<br>
●Break line tag: It is used for making a new line.
<!-- comment -->
●Comment tag: It is used to set the comment in an HTML document. It is not visible
on the browser.
Lists :
 Ordered
 Unordered
 Description list
<img src="path of img.." Alt=".."/>
<form >
<input type="…." name="….">
<button value="….." >
<form >
Type of inputs :
• Text
• Mail
• Number
• File
●Radio button tag: It is used to select only one option from the given options.
●Dropdown option tag: It is used to select an option from a drop-down list.
●Table tag: A table tag is used to create a table in an HTML document.
●Tr tag: It is used to define a row of an HTML table.
●Th tag: It defines the header cell in a table. By default, it set the content with the bold and
center property.
table

More Related Content

Similar to Html-meeting1-1.pptx

introdution-to-html (1).ppt
introdution-to-html (1).pptintrodution-to-html (1).ppt
introdution-to-html (1).ppt
F3ZONE1
 
introdution-to-html.ppt NJBJGHGJHGGJGJG
introdution-to-html.ppt  NJBJGHGJHGGJGJGintrodution-to-html.ppt  NJBJGHGJHGGJGJG
introdution-to-html.ppt NJBJGHGJHGGJGJG
AMRITHA16
 
introdution-to-html programming and dhtml
introdution-to-html programming and dhtmlintrodution-to-html programming and dhtml
introdution-to-html programming and dhtml
santhosh sriprada
 
introdution-to-html.ppt for bca ,bsc students
introdution-to-html.ppt for bca ,bsc studentsintrodution-to-html.ppt for bca ,bsc students
introdution-to-html.ppt for bca ,bsc students
MaheshMutnale1
 
introdution-to-html_jayarao27_11_22.pptx
introdution-to-html_jayarao27_11_22.pptxintrodution-to-html_jayarao27_11_22.pptx
introdution-to-html_jayarao27_11_22.pptx
jayarao21
 
introdution-to-html.pptx
introdution-to-html.pptxintrodution-to-html.pptx
introdution-to-html.pptx
datapro2
 
introduction-to-html hyper text markup .ppt
introduction-to-html hyper text markup  .pptintroduction-to-html hyper text markup  .ppt
introduction-to-html hyper text markup .ppt
ubaidullah75790
 
4_5926925443935505826.pptx
4_5926925443935505826.pptx4_5926925443935505826.pptx
4_5926925443935505826.pptx
Lusi39
 

Similar to Html-meeting1-1.pptx (20)

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
 
introduction to html.ppt
introduction to html.pptintroduction to html.ppt
introduction to html.ppt
 
introdution-to-html.ppt for bca ,bsc students
introdution-to-html.ppt for bca ,bsc studentsintrodution-to-html.ppt for bca ,bsc students
introdution-to-html.ppt for bca ,bsc students
 
introdution-to-html-introdution-to-html.ppt
introdution-to-html-introdution-to-html.pptintrodution-to-html-introdution-to-html.ppt
introdution-to-html-introdution-to-html.ppt
 
introdution-to-html_jayarao27_11_22.pptx
introdution-to-html_jayarao27_11_22.pptxintrodution-to-html_jayarao27_11_22.pptx
introdution-to-html_jayarao27_11_22.pptx
 
introduction to HTML. How to learn HTML coding
introduction to HTML. How to learn HTML codingintroduction to HTML. How to learn HTML coding
introduction to HTML. How to learn HTML coding
 
Dynamic html (#1)
Dynamic  html (#1)Dynamic  html (#1)
Dynamic html (#1)
 
HTML & CSS.ppt
HTML & CSS.pptHTML & CSS.ppt
HTML & CSS.ppt
 
mst_unit1.pptx
mst_unit1.pptxmst_unit1.pptx
mst_unit1.pptx
 
introdution-to-html.pptx
introdution-to-html.pptxintrodution-to-html.pptx
introdution-to-html.pptx
 
introduction-to-html hyper text markup .ppt
introduction-to-html hyper text markup  .pptintroduction-to-html hyper text markup  .ppt
introduction-to-html hyper text markup .ppt
 
Html Workshop
Html WorkshopHtml Workshop
Html Workshop
 
4_5926925443935505826.pptx
4_5926925443935505826.pptx4_5926925443935505826.pptx
4_5926925443935505826.pptx
 
INTERNSHIP PROJECT PPT RAJ HZL.pdf
INTERNSHIP PROJECT PPT RAJ HZL.pdfINTERNSHIP PROJECT PPT RAJ HZL.pdf
INTERNSHIP PROJECT PPT RAJ HZL.pdf
 

More from YoussefAbobakr

More from YoussefAbobakr (9)

Third Meeting.pptx
Third Meeting.pptxThird Meeting.pptx
Third Meeting.pptx
 
PR Third Meeting.pptx
PR Third Meeting.pptxPR Third Meeting.pptx
PR Third Meeting.pptx
 
PR Third Meeting.pptx
PR Third Meeting.pptxPR Third Meeting.pptx
PR Third Meeting.pptx
 
Second Meeting.pptx
Second Meeting.pptxSecond Meeting.pptx
Second Meeting.pptx
 
Meet (1).pdf
Meet (1).pdfMeet (1).pdf
Meet (1).pdf
 
embedded systems - Developer Student Clubs.pptx.pdf
embedded systems - Developer Student Clubs.pptx.pdfembedded systems - Developer Student Clubs.pptx.pdf
embedded systems - Developer Student Clubs.pptx.pdf
 
Technical.pptx
Technical.pptxTechnical.pptx
Technical.pptx
 
Non Technical Presentation.pptx
Non Technical Presentation.pptxNon Technical Presentation.pptx
Non Technical Presentation.pptx
 
PM_First Meeting.pptx
PM_First Meeting.pptxPM_First Meeting.pptx
PM_First Meeting.pptx
 

Recently uploaded

Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan CytotecJual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
ZurliaSoop
 
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai KuwaitThe Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
daisycvs
 

Recently uploaded (20)

Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan CytotecJual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
Jual Obat Aborsi ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan Cytotec
 
Kalyan Call Girl 98350*37198 Call Girls in Escort service book now
Kalyan Call Girl 98350*37198 Call Girls in Escort service book nowKalyan Call Girl 98350*37198 Call Girls in Escort service book now
Kalyan Call Girl 98350*37198 Call Girls in Escort service book now
 
Berhampur CALL GIRL❤7091819311❤CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
Berhampur CALL GIRL❤7091819311❤CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDINGBerhampur CALL GIRL❤7091819311❤CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
Berhampur CALL GIRL❤7091819311❤CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
 
New 2024 Cannabis Edibles Investor Pitch Deck Template
New 2024 Cannabis Edibles Investor Pitch Deck TemplateNew 2024 Cannabis Edibles Investor Pitch Deck Template
New 2024 Cannabis Edibles Investor Pitch Deck Template
 
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdfDr. Admir Softic_ presentation_Green Club_ENG.pdf
Dr. Admir Softic_ presentation_Green Club_ENG.pdf
 
GUWAHATI 💋 Call Girl 9827461493 Call Girls in Escort service book now
GUWAHATI 💋 Call Girl 9827461493 Call Girls in  Escort service book nowGUWAHATI 💋 Call Girl 9827461493 Call Girls in  Escort service book now
GUWAHATI 💋 Call Girl 9827461493 Call Girls in Escort service book now
 
Berhampur Call Girl Just Call 8084732287 Top Class Call Girl Service Available
Berhampur Call Girl Just Call 8084732287 Top Class Call Girl Service AvailableBerhampur Call Girl Just Call 8084732287 Top Class Call Girl Service Available
Berhampur Call Girl Just Call 8084732287 Top Class Call Girl Service Available
 
Buy gmail accounts.pdf buy Old Gmail Accounts
Buy gmail accounts.pdf buy Old Gmail AccountsBuy gmail accounts.pdf buy Old Gmail Accounts
Buy gmail accounts.pdf buy Old Gmail Accounts
 
Falcon Invoice Discounting: The best investment platform in india for investors
Falcon Invoice Discounting: The best investment platform in india for investorsFalcon Invoice Discounting: The best investment platform in india for investors
Falcon Invoice Discounting: The best investment platform in india for investors
 
Ooty Call Gril 80022//12248 Only For Sex And High Profile Best Gril Sex Avail...
Ooty Call Gril 80022//12248 Only For Sex And High Profile Best Gril Sex Avail...Ooty Call Gril 80022//12248 Only For Sex And High Profile Best Gril Sex Avail...
Ooty Call Gril 80022//12248 Only For Sex And High Profile Best Gril Sex Avail...
 
QSM Chap 10 Service Culture in Tourism and Hospitality Industry.pptx
QSM Chap 10 Service Culture in Tourism and Hospitality Industry.pptxQSM Chap 10 Service Culture in Tourism and Hospitality Industry.pptx
QSM Chap 10 Service Culture in Tourism and Hospitality Industry.pptx
 
Phases of Negotiation .pptx
 Phases of Negotiation .pptx Phases of Negotiation .pptx
Phases of Negotiation .pptx
 
HomeRoots Pitch Deck | Investor Insights | April 2024
HomeRoots Pitch Deck | Investor Insights | April 2024HomeRoots Pitch Deck | Investor Insights | April 2024
HomeRoots Pitch Deck | Investor Insights | April 2024
 
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai KuwaitThe Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
The Abortion pills for sale in Qatar@Doha [+27737758557] []Deira Dubai Kuwait
 
Call 7737669865 Vadodara Call Girls Service at your Door Step Available All Time
Call 7737669865 Vadodara Call Girls Service at your Door Step Available All TimeCall 7737669865 Vadodara Call Girls Service at your Door Step Available All Time
Call 7737669865 Vadodara Call Girls Service at your Door Step Available All Time
 
Cannabis Legalization World Map: 2024 Updated
Cannabis Legalization World Map: 2024 UpdatedCannabis Legalization World Map: 2024 Updated
Cannabis Legalization World Map: 2024 Updated
 
Chennai Call Gril 80022//12248 Only For Sex And High Profile Best Gril Sex Av...
Chennai Call Gril 80022//12248 Only For Sex And High Profile Best Gril Sex Av...Chennai Call Gril 80022//12248 Only For Sex And High Profile Best Gril Sex Av...
Chennai Call Gril 80022//12248 Only For Sex And High Profile Best Gril Sex Av...
 
Falcon Invoice Discounting: Unlock Your Business Potential
Falcon Invoice Discounting: Unlock Your Business PotentialFalcon Invoice Discounting: Unlock Your Business Potential
Falcon Invoice Discounting: Unlock Your Business Potential
 
Berhampur 70918*19311 CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
Berhampur 70918*19311 CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDINGBerhampur 70918*19311 CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
Berhampur 70918*19311 CALL GIRLS IN ESCORT SERVICE WE ARE PROVIDING
 
Putting the SPARK into Virtual Training.pptx
Putting the SPARK into Virtual Training.pptxPutting the SPARK into Virtual Training.pptx
Putting the SPARK into Virtual Training.pptx
 

Html-meeting1-1.pptx

  • 1. GDSC – Fayoum University 2022 – 2023 WEB Development Introduction
  • 2. What is Web Development? Web development is the process of building and maintaining a website for the internet or an intranet that is accessed through a web browser and hosted on a server, either on on-premises hardware or in the cloud. This includes everything from single plain-text webpages up to complex web applications.
  • 3. CODING Web developers build websites by coding using different programming languages. These languages consist of unique vocabularies, syntax and commands that define the visual representation and functionality of websites. Which language is used for development depends on the platform, operating system or style of the website.
  • 4. Some of the most common coding languages include the following: HTML CSS JavaScript Python C/C++ C#
  • 5. What is HTTP? -HTTP stands for Hyper Text Transfer Protocol -WWW is about communication between web clients and servers -Communication between client computers and web servers is done by sending HTTP Requests and receiving HTTP Responses
  • 6. World Wide Web Communication -The World Wide Web is about communication between web clients and web servers. -Clients are often browsers (Chrome, Edge, Safari), but they can be any type of program or device. -Servers are most often computers in the cloud.
  • 7. HTTP Request / Response Communication between clients and servers is done by requests and responses: 1- A client (a browser) sends an HTTP request to the web 2- A web server receives the request 3- The server runs an application to process the request 4- The server returns an HTTP response (output) to the browser 5- The client (the browser) receives the response
  • 8. What is a web browser? • A web browser is a computer program that allows users to view information, graphics, interactive pages and videos on the Internet. Web browsers also know how to communicate with web servers that host websites and pages that are transmitted to computers.
  • 9. 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.
  • 10. The <!DOCTYPE html> declaration defines that this document is an HTML5 document The <html> element is the root element of an HTML page The <head> element contains meta information about the HTML page The <title> element specifies a title for the HTML page (which is shown in the browser's title bar or in the page's tab) The <body> element defines the document's body, and is a container for all the visible contents, such as headings, paragraphs, images, hyperlinks, tables, lists, etc. The <h1> element defines a large heading The <p> element defines a paragraph
  • 11. What is an HTML Element? An HTML element is defined by a start tag, some content, and an end tag: <tagname> Content goes here... </tagname> The HTML element is everything from the start tag to the end tag: <h1>My First Heading</h1> <p>My first paragraph.</p>
  • 13. Empty HTML Elements HTML elements with no content are called empty elements. The <br> tag defines a line break, and is an empty element without a closing tag.
  • 14. <HTML> statements….<HTML> ●HTML tag: It is the root of the HTML document which is used to specify that the document is HTML. Document structure tags: <head> statements….<head> ●Head tag: is used to contain all the head elements in the HTML file. It contains the title, style, meta, … etc. <body> statements….<body> ●Body tag: It is used to define the body of an HTML document. It contains images, tables, lists, … etc.
  • 15.
  • 16. <title> name of the page.. <t/itle> ●Title tag: It is used to define the title of an HTML document. Head tags:
  • 17. <meta > ●Meta tag: It is used to specify the page description.
  • 18. <h1> name of the page.. </h1> ●Heading tag: It is used to define the heading of an HTML document. Body tags:
  • 19. <p> Statements ... </p> ●Paragraph tag: It is used to define paragraph content in an HTML document.  i  b  em  u  strike  Small  span  pre Other tags :
  • 20. ●Anchor tag: It is used to link one page to another page. <a href ="url.."> statement.. </a> <hr width ="val.." size ="val.."> ●Horizontal rule tag: It is used to display the horizontal line in an HTML document. <br> ●Break line tag: It is used for making a new line. <!-- comment --> ●Comment tag: It is used to set the comment in an HTML document. It is not visible on the browser.
  • 21. Lists :  Ordered  Unordered  Description list
  • 22. <img src="path of img.." Alt=".."/> <form > <input type="…." name="…."> <button value="….." > <form > Type of inputs : • Text • Mail • Number • File
  • 23. ●Radio button tag: It is used to select only one option from the given options.
  • 24. ●Dropdown option tag: It is used to select an option from a drop-down list.
  • 25. ●Table tag: A table tag is used to create a table in an HTML document. ●Tr tag: It is used to define a row of an HTML table. ●Th tag: It defines the header cell in a table. By default, it set the content with the bold and center property. table