0% found this document useful (0 votes)
2 views11 pages

Web Programing Lecture 3

Web development involves building, creating, and maintaining websites, encompassing web design, programming, and database management. It is divided into frontend development, which users interact with, and backend development, which manages data behind the scenes. HTML, or Hyper Text Markup Language, is the standard markup language for web pages, consisting of elements defined by tags.

Uploaded by

t9621161
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views11 pages

Web Programing Lecture 3

Web development involves building, creating, and maintaining websites, encompassing web design, programming, and database management. It is divided into frontend development, which users interact with, and backend development, which manages data behind the scenes. HTML, or Hyper Text Markup Language, is the standard markup language for web pages, consisting of elements defined by tags.

Uploaded by

t9621161
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

Web Development

Web Development
➢ Web development refers to the building, creating, and maintaining of
websites.
➢ It includes aspects such as web design, web publishing, web programming,
and database management. It is the creation of an application that works over
the internet i.e. websites.
The word Web Development is made up of two words, that is:
•Web: It refers to websites, web pages or anything that works over the internet.

•Development: Building the application from scratch.


Web Development con..
➢ Web development, also known as website development, refers to
the tasks associated with creating, building, and maintaining
websites and web applications that run online on a browser.
➢ It may, however, also include web design, web programming,
and database management
➢ Web programming, also known as web development, is the creation of
dynamic web applications.
➢ Examples of web applications are social networking sites like Facebook
or e-commerce sites like Amazon.
Web Development con…
Web Development can be classified into two ways:
•Frontend Development

•Backend Development

Frontend Development: The part of a website that the user interacts directly is
termed as front end. It is also referred to as the ‘client side’ of the application.
Web programming con…
Backend Development: Backend is the server side of a website.
➢ It is the part of the website that users cannot see and interact. It is the portion
of software that does not come in direct contact with the users. It is used to
store and arrange data.
What is HTML

➢ HTML stands for Hyper Text Markup Language


➢ HTML is the standard markup language for Web pages
➢ HTML elements are the building blocks of HTML pages
➢ HTML elements are represented by <> tags
HTML Elements
An HTML element is a start tag and an end tag with content in
between:
HTML Document
Structure
A simple html example
<!DOCTYPE html>
<html lang="en">

<meta charset="utf-8">
<title>This is a title</title>

<body>
<h1>This is a heading</h1>
<p>This is a paragraph</p>

</body>

</html>
Example explained
HTML elements are the building blocks of HTML pages.

•The <!DOCTYPE html> declaration defines this document to be HTML5


•The <html> element is the root element of an HTML page
•The lang attribute defines the language of the document
•The <meta> element contains meta information about the document
•The charset attribute defines the character set used in the document
•The <title> element specifies a title for the document
•The <body> element contains the visible page content
•The <h1> element defines a large heading
•The <p> element defines a paragraph
Thank You

You might also like