HTML Beginners Class — WhatsApp Tutorial Pack
1) WHAT IS PROGRAMMING?
Programming means giving instructions to a computer so it can do what you want.
2) WHAT ARE COMPUTER PROGRAMS?
Programs are sets of instructions written for computers (WhatsApp, Instagram, Games, etc.)
3) WHAT IS CODING?
Coding is writing instructions using languages like HTML, CSS, JavaScript, Python, etc.
4) HOW DO APPS WORK?
FRONTEND: What you see (buttons, colors, layout).
BACKEND: What you don’t see (saving data, login, processing).
5) WHAT IS HTML?
HTML is the structure or skeleton of a webpage.
6) BASIC HTML STRUCTURE:
<!DOCTYPE html>
<html>
<head>
<title>My First Page</title>
</head>
<body>
<h1>Hello World</h1>
<p>This is my first webpage.</p>
</body>
</html>
7) BACKGROUND COLOR (style tag):
<style>
body { background-color: lightblue; }
</style>
8) CLASSWORK
- Intro page with name, description, background color, emojis.
- Profile card with name, age, hobby.
- Simple school webpage.
- Fake chat interface.