Introduction to
HTML
16th July, 2025
Request and Response Cycle
When the Browser Sends a Request to the Server
to view a webpage, the server responds with data
packets for a webpage which contains.
- HTML
- CSS
- JavaScript
2
The Frontend Trio
Role of HTML, CSS and JavaScript
- HTML: Structure and Content
- CSS: Style and Presentation
- JavaScript: Interactivity and Logic
3
What is HTML?
- HTML Stands for HyperText Markup Language
- It’s the Skeleton of a webpage
- Describes content like paragraph, headings,
images, links etc
4
HTML Tags and Syntax
Understanding Tags and Structure
- HTML uses tags
<tagname>Content</tagname>
- Most elements have opening and closing tags
Example: <h1>Hello World</h1>
5
Why we need a code Editor
A code editor is a tool we use to write, edit, and
save code.
- Syntax Highlighting
- Code Completion
- Error Detection
- File Structure
Recommended Code Editor:
VS Code
6
Evaluation
Write about yourself using HTML tags
- Your Name
- Age
- Interests
- A talent
7