यहाँ आपको वेब डिज़ाइनिंग कोर्स (Web Designing Course) की पूरी जानकारी हिंदी में दी जा रही है – हर टॉपिक के साथ उदाहरण (Examples) और विस्तार (Explanation) भी मिलेगा। यह कोर्स बिलकुल शुरुआती (Beginner) से लेकर इंटरमीडिएट लेवल तक है।
🧑🏫 वेब डिज़ाइनिंग कोर्स – पूरा सिलेबस, उदाहरण सहित (Web Designing Full Course in Hindi)
🟡 भाग 1: वेब डिज़ाइनिंग का परिचय (Introduction to Web Designing)
✔️ क्या सीखेंगे?
-
वेबसाइट क्या होती है?
-
वेबसाइट कैसे काम करती है (Client-Server Model)?
-
Static vs Dynamic Websites
🎯 उदाहरण:
-
Static Website: एक सामान्य बायो वेबसाइट (जैसे resume.html)
-
Dynamic Website: Facebook, Amazon आदि
🔵 भाग 2: HTML (HyperText Markup Language)
✔️ बेसिक टॉपिक्स:
-
HTML Structure:
<!DOCTYPE html>
,<html>
,<head>
,<body>
-
Text Tags:
<h1>
,<p>
,<b>
,<i>
-
List:
<ul>
,<ol>
,<li>
-
Links:
<a href="url">
-
Images:
<img src="image.jpg" />
-
Tables:
<table>
,<tr>
,<td>
-
Forms:
<form>
,<input>
,<textarea>
,<select>
🎯 उदाहरण:
<h1>मेरी पहली वेबसाइट</h1>
<p>यह एक पैराग्राफ है।</p>
<a href="https://google.com">Google पर जाएं</a>
🟢 भाग 3: CSS (Cascading Style Sheets)
✔️ बेसिक टॉपिक्स:
-
CSS जोड़ने के तरीके: Inline, Internal, External
-
Colors, Backgrounds
-
Fonts, Text Style
-
Box Model: Margin, Padding, Border
-
Layout: Display, Position, Flexbox, Grid
🎯 उदाहरण:
<style>
body {
background-color: #f2f2f2;
font-family: Arial;
}
h1 {
color: blue;
text-align: center;
}
</style>
🔴 भाग 4: JavaScript (JS) – इंटरएक्टिव वेबसाइट के लिए
✔️ बेसिक टॉपिक्स:
-
JS का परिचय
-
Variables, Data Types, Operators
-
Conditions (if-else)
-
Loops (for, while)
-
Functions
-
DOM Manipulation (HTML से बातचीत)
🎯 उदाहरण:
<script>
function greet() {
alert("नमस्ते! स्वागत है आपकी वेबसाइट पर।");
}
</script>
<button onclick="greet()">Click Me</button>
🟣 भाग 5: रेस्पॉन्सिव डिज़ाइन – Bootstrap Framework
✔️ सीखेंगे:
-
Grid System
-
Buttons, Cards, Navbar
-
Mobile Friendly Layout
🎯 उदाहरण:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css">
<div class="container">
<div class="row">
<div class="col-md-6">Left</div>
<div class="col-md-6">Right</div>
</div>
</div>
🟠 भाग 6: वेबसाइट होस्टिंग (Hosting & Deployment)
✔️ क्या सीखेंगे:
-
Domain Name और Hosting क्या है?
-
GitHub Pages से फ्री वेबसाइट लाइव करना
-
Netlify या Hostinger पर अपलोड करना
⚫ भाग 7: प्रोजेक्ट (Project Based Learning)
✅ प्रोजेक्ट आइडियाज़:
-
Personal Portfolio Website (आपका Resume वेबसाइट)
-
Restaurant Menu Website
-
Photo Gallery Website
-
Simple Blog Layout
-
Contact Form with JS Alert
🧾 BONUS: Extra Tools जो सीखना चाहिए
-
Figma / Canva: Design Mockup
-
VS Code: कोडिंग के लिए सबसे अच्छा Editor
-
Google Fonts: सुंदर फॉन्ट्स का उपयोग
📦 डाउनलोड करने योग्य सामग्री (यदि चाहिए तो)
-
✅ All Course LInk google drive - https://docs.google.com/spreadsheets/d/1KkfoKjgeem4vd3ylbktby0mdnWlui_6J0FO0vt9zwTw/edit?gid=0#gid=0
क्या आप चाहते हैं:
-
contact me - 9516207001 anugrah computer training
Comments
Post a Comment