Notes
1. Introduction to Web Development
2.
Web development involves creating websites and web
applications.
Types:
Frontend – User interface (HTML, CSS, JavaScript)
Backend – Server-side logic (Node.js, Python, PHP)
Fullstack – Both frontend and backend
Key Terms:
Browser: Displays web pages
, Server: Hosts web applications
Client: User device
---
2. HTML (HyperText Markup Language)
HTML defines the structure of a web page.
Basic Tags
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>Heading</h1>
<p>Paragraph</p>