- Understand web development and web designing concepts
- Learn about web development strategies
- Explore different roles in web development
BMC201 - Web Technology
2026-01-26
Lecture 1
Introduction to Web Designing
Week 1 | Unit I: Web Page Designing
BMC201 - Web Technology
Mr. Prashant Kumar Nag, Assistant Professor
Learning Objectives
What is Web Designing vs Web Development?
Web Designing
Web Development
Client-side vs Server-side Development
Client-side
Server-side
Development Roles
Frontend
Backend
Full-stack
Key Web Technologies
HTML
Structure
CSS
Style
JavaScript
Behavior
HTML: The Structure
1<!DOCTYPE html>
2<html lang="en">
3<head>
4 <title>My First Page</title>
</head>
5<body>
6 <h1>Hello World!</h1>
</body>
</html>👆 Foundation of every web page
CSS: Adding Style
CSS: Adding Style
✨ CSS transforms plain HTML into beautiful web pages
JavaScript: Adding Interactivity
JavaScript: Adding Interactivity
<button id="btn">Click Me</button>
<script>
document.getElementById('btn')
.addEventListener('click', function() {
alert('Button clicked!');
});
</script>🎯 JavaScript brings interactivity and dynamic behavior
Web Development Workflow
⚡ We’ll focus on Development in this course
Essential Tools
Code Editor: VS Code
Version Control: Git & GitHub
Browser DevTools: Chrome, Firefox
Frameworks: Bootstrap, React, Vue
Why Learn Web Development?
📈 High demand
💰 Great salaries
🌍 Work remotely
🎨 Creative outlet
🚀 Build your ideas
📚 Constant learning
Resources
Questions?
Next: Lecture 2 - History of Web & Internet