⚠ यह कार्रवाई अनुमति नहीं है!
🌐 NIELIT O Level · M2-R5 Web Design · Hindi Notes

Chapter 8: Web Publishing & Browsing — Website को Live करना

Module का आखिरी पड़ाव! इस chapter में — SGML, Web Hosting, Document Standards, Web Publishing Components, Document Management, Web Design Principles, Search Engines, WWW, Web Browsers, HTTP व Publishing Tools — पूरी publishing journey पूरी डिटेल के साथ!

📑 12 Topics 🌍 70+ Facts 📊 Diagrams ❓ 50 MCQs + 15 Theory + 36 Trending Q&A 🗓 Updated 2026
👉 सभी chapters देखने के लिए swipe करें
📑 Table of Contents — किसी भी topic पर सीधे जाएँ
8.0

Overview: Web Publishing & Browsing — वेब पेज कैसे Live होता है

Web Publishing = Website को इंटरनेट पर upload करना ताकि users worldwide उसे access कर सकें। Web Browsing = Internet पर मौजूद जानकारी को browser से खोजना व देखना।

🔹 Components of Web Publishing (एक नज़र में)

  1. Website Creation: HTML, CSS, JS से pages design करना।
  2. Web Hosting: Website को server पर upload करना।
  3. Domain Name: Website का नाम (जैसे www.example.com)।
  4. File Transfer: FTP से files server पर भेजना।
  5. Maintenance: Regular update व error fixing।
Exam Point: Web Publishing workflow — Create → Upload → Maintain। यह पूरा chapter इसी flow के आस-पास घूमता है।
8.1

SGML — Markup Languages की जननी

SGML (Standard Generalized Markup Language) एक international standard (ISO 8879, 1986) है जो documents की structure, content व presentation describe करने के लिए एक meta-language देता है — "languages बनाने की भाषा"। इसी से आगे चलकर HTML व XML बनीं।

🔹 Why SGML? (क्यों आवश्यक)

  • Large व long-lived documents (manuals, standards, books) की consistent structure तय करना।
  • अलग-अलग systems/softwares में interchange व archival आसान बनाना।
  • Presentation से अधिक structure/meaning पर जोर — same content से कई outputs (web, print, PDF) बन सकते हैं।

🔹 SGML Document — Core Building Blocks

Partकाम
DTD (Document Type Definition)कौन-से elements/attributes allowed हैं, क्रम व nesting नियम तय करता है
ElementsDocument के logical parts (जैसे BOOK, CHAPTER, P)
AttributesElement के properties (जैसे lang, id)
EntitiesReusable content/characters के नाम (जैसे © या file references)
NotationsExternal data (images, diagrams) का प्रकार बताने वाली declarations

📄 Structure of an SGML Document — तीन हिस्से

  1. Prolog: DTD/Entity declarations
  2. Document Instance: Actual content (elements/attributes)
  3. Epilog: Optional end declarations

🧩 Mini Example (DTD + Document)

📄 SGML DTD और उसका Instance
<!DOCTYPE BOOK [
  <!ELEMENT BOOK    (TITLE, AUTHOR+, CHAPTER+)>
  <!ELEMENT TITLE   (#PCDATA)>
  <!ELEMENT AUTHOR  (#PCDATA)>
  <!ELEMENT CHAPTER (CHTITLE, P+)>
  <!ELEMENT CHTITLE (#PCDATA)>
  <!ELEMENT P       (#PCDATA)>
]>

<BOOK>
  <TITLE>Learning SGML</TITLE>
  <AUTHOR>Ravi Kumar</AUTHOR>

  <CHAPTER>
    <CHTITLE>Introduction</CHTITLE>
    <P>SGML is a meta-language for defining markup.</P>
    <P>HTML and XML are derived from SGML concepts.</P>
  </CHAPTER>
</BOOK>

🔎 ऊपर DTD allowed structure define करता है; नीचे instance उसी structure को follow करता है।

⚖️ SGML vs HTML vs XML

FeatureSGMLHTMLXML
TypeMeta-language (framework)SGML का applicationSGML-inspired simplified meta-language
Primary UseComplex, long-term docsWeb page presentationData exchange/structure
StrictnessFlexible, complex rulesLenient (older HTML)Very strict (well-formedness)
Learning CurveHighLow/MediumMedium

✅ Advantages

  • Separation of content & presentation — same content से multiple outputs (Web/Print/PDF)।
  • Validation via DTD — documents structurally correct रहते हैं।
  • Reusability & Consistency — बड़े manual/technical docs में uniformity।

⚠️ Limitations

  • Complex specification; tooling setup कठिन (modern dev के लिए heavy)।
  • Web-only use के लिए overkill; HTML/XML पर्याप्त रहते हैं।

🔄 Typical Workflow (Production Publishing)

  1. Design DTD — organization के document structure rules तय करें।
  2. Authoring — SGML-aware editor में content लिखें (DTD-guided)।
  3. Validate — DTD के against check करें (errors fix करें)।
  4. Transform — Output के लिए stylesheets/processors (HTML/PDF/Print)।
  5. Publish — web server/print system पर deploy करें।
Exam Point: Full Form: Standard Generalized Markup Language; Standard: ISO 8879 (1986); Core Parts: DTD, Elements, Attributes, Entities, Notations; HTML = SGML application, XML = SGML-inspired।
8.2

Web Hosting Basics — Website को Online लाना

Web Hosting से website इंटरनेट पर accessible बनती है। Hosting provider server space देता है जहाँ website की सभी files (HTML, CSS, JS, Images, Videos) store होती हैं।

🔹 Need for Web Hosting (क्यों आवश्यक)

  • Website को 24×7 इंटरनेट पर उपलब्ध रखने के लिए।
  • High-speed servers पर fast access के लिए।
  • Data backup व security management के लिए।
  • Custom domain (www.example.com) connect करने के लिए।

🔹 Components of Web Hosting

  • Web Server: Physical/virtual computer जो website files store करता है।
  • Domain Name: Website का पता (जैसे www.google.com)।
  • DNS: Domain name को server IP address से map करता है।
  • Hosting Space: Disk storage जहाँ files रहती हैं।
  • Bandwidth: Data transfer की capacity।
  • Control Panel: cPanel/Plesk — website manage करने के tools का dashboard।

🔹 Types of Web Hosting

TypeCostSpeedControlBest For
Shared HostingLowMediumLimitedBeginners
VPS HostingMediumHighGoodGrowing Websites
Dedicated HostingHighVery HighFullLarge Businesses
Cloud HostingFlexibleVery HighHighModern Apps
💡 Free Hosting: कुछ companies limited resources के साथ free hosting देती हैं — InfinityFree, Netlify, GitHub Pages।

🪜 Hosting Process (होस्टिंग की प्रक्रिया)

  1. Domain name purchase करें (GoDaddy, Namecheap)।
  2. Hosting plan चुनें (Shared/VPS/Cloud)।
  3. Files upload करें (FTP या cPanel से)।
  4. DNS configure करें ताकि domain server से जुड़ जाए।
  5. Website test करें कि सब सही काम कर रहा है या नहीं।

🖥️ Common Hosting Control Panels

Panelविशेषता
cPanelसबसे popular GUI-based panel; files, emails, backups manage करता है
PleskWindows/Linux दोनों के लिए suitable
DirectAdminLightweight hosting control panel
💡 Tip: cPanel में File Manager, Database Manager (phpMyAdmin), व Email setup tools मिलते हैं।

📤 FTP (File Transfer Protocol)

PropertyDetail
Full FormFile Transfer Protocol
Port21
Secure VersionSFTP (SSH encryption)
Popular ToolsFileZilla, Cyberduck, WinSCP

🌐 Popular Hosting Providers

  • Hostinger — Budget-friendly shared hosting।
  • AWS (Amazon Web Services) — Cloud-based scalable hosting।
  • Bluehost — WordPress के लिए optimized।
  • GoDaddy — Domain + hosting combo।
  • Netlify/Vercel — Static site hosting (developers के लिए)।
Exam Point: FTP Port=21; Shared=cheapest, Dedicated=full server, Cloud=scalable। DNS domain name को IP address से जोड़ता है — यह बहुत common question है। Hosting process क्रम: Domain→Plan→Upload→DNS→Test।
8.3

Document Interchange Standards — Systems के बीच Documents Share करना

Document Interchange Standards एक set of rules व formats हैं जो documents को अलग-अलग computer systems व software applications के बीच consistent तरीके से exchange व interpret करने देते हैं।

🔹 Need for Document Interchange Standards

  • विभिन्न operating systems/applications के बीच compatibility बनाए रखना।
  • Data loss व format corruption से बचाव।
  • Long-term storage व sharing को आसान बनाना।
  • Documents को printing या web publishing के लिए standardized करना।
💡 Example: MS Word file को Google Docs में सही खोलने के लिए दोनों software को common format चाहिए जैसे RTF या PDF।

🔹 Major Document Interchange Standards

StandardFull FormPurposeUsage Area
HTMLHyperText Markup LanguageWeb पर documents display करनाWeb Pages
XMLeXtensible Markup LanguageData storage व transferData Exchange
PDFPortable Document FormatFixed-layout viewing व printingPrint/Sharing
SGMLStandard Generalized Markup LanguageMarkup rules define करनाMeta-standard
RTFRich Text FormatText formatting compatibilityWord Processors में widely supported
DOC/DOCXMicrosoft Word DocumentMS Word proprietary format, अब XML-based (DOCX)Documents

🔄 File Conversion & Interchange Process

  1. Document को create करें (Word, Writer, या Editor)।
  2. Export/Save As के ज़रिए standardized format चुनें (PDF, HTML, XML)।
  3. File को दूसरे system/software में open करें।
  4. Formatting व structure same रहना चाहिए।

✅ Advantages

  • Data exchange व interoperability आसान।
  • Uniform formatting across platforms।
  • Content consistency maintained रहती है।
  • Automation व data sharing में सुविधा।

⚠️ Limitations

  • कई बार proprietary formats (जैसे DOCX) सभी software में compatible नहीं होते।
  • Conversion के दौरान formatting loss हो सकता है।
  • File size बढ़ सकता है (PDF/XML में metadata के कारण)।

🌍 Real-world Use Cases

  • Web Development: HTML/XML content structure के लिए।
  • Corporate Reports: PDF में standardized sharing।
  • Government Data Exchange: XML-based e-Governance documents।
  • Printing & Publishing: SGML व PDF के माध्यम से publishing workflow।
Exam Point: Web publishing के लिए HTML/XML, print-ready files के लिए PDF सबसे common। SGML एक meta-standard है (documents नहीं, बल्कि rules define करता है)। कम-से-कम 3 examples व uses याद रखें।
8.4

Components of Web Publishing — Website बनाने से Live तक

Web Publishing के essential elements — content creation, domain registration, hosting, uploading, व maintenance — मिलकर website को Internet पर लाते हैं।
ComponentकामExample
Website CreationHTML/CSS/JS से pages बनानाindex.html, about.html
Domain RegistrationUnique web address खरीदनाwww.mysite.com (GoDaddy, Namecheap)
Web HostingServer पर files upload करनाHostinger, GoDaddy
Web ServerFiles को users तक पहुँचानाApache, Nginx, IIS
File Transfer (FTP)Files को server पर भेजनाFileZilla
Website MaintenanceRegular update व error fixingCMS updates, backups
Promotion & SEOSearch engines में rank करवानाKeyword optimization, backlinks

🔄 Workflow of Web Publishing

Web Publishing — Design से Live तक

Design Domain Hosting FTP Upload Maintain

🛠️ Supporting Technologies

  • HTML/CSS/JS: Web page design के लिए।
  • FTP/SFTP: Files transfer के लिए।
  • CMS: WordPress, Joomla — content management।
  • Database: MySQL/MongoDB — dynamic content storage।
  • Analytics: Google Analytics — traffic monitor करना।

✅ Advantages of Web Publishing

  • Global reach — दुनिया में कोई भी access कर सकता है।
  • Cost-effective advertising platform।
  • Instant updates व real-time interaction।
  • Environment-friendly (paperless communication)।

⚠️ Disadvantages

  • Continuous maintenance व hosting cost।
  • Security threats (hacking, malware)।
  • Technical knowledge की आवश्यकता।
Exam Point: क्रम याद रखें — Design → Domain → Hosting → FTP → Maintenance → SEO। Web Server (Apache/Nginx/IIS) files को browser तक पहुँचाता है। Dynamic websites में backend server + database भी component हैं।
8.5

Document Management — Files व्यवस्थित रखना

Website की सभी files (HTML, CSS, JS, images, docs) को organize, version-control, secure व maintain रखना ही Document Management है।

🔹 Need for Document Management

  • Website के सभी files व्यवस्थित रखने के लिए।
  • Regular updates व maintenance आसान बनाने के लिए।
  • Version conflicts व data loss से बचने के लिए।
  • Team collaboration व editing simplify करने के लिए।
  • Security व backup सुनिश्चित करने के लिए।

📁 Ideal Folder Structure

🗂️ website folder organization
/mywebsite
 ├── index.html
 ├── about.html
 ├── /css
 │    └── style.css
 ├── /js
 │    └── script.js
 ├── /images
 │    └── logo.png
 ├── /docs
 │    └── privacy-policy.pdf
 └── /backup
      └── old-version.zip
💡 Tip: Proper naming conventions (lowercase, hyphens instead of spaces) maintain करना ज़रूरी है।

🔹 Components of Document Management System (DMS)

Componentकाम
Storage SystemFiles store करने की जगह — local folders या cloud
Version ControlChanges track व restore करने की सुविधा (Git, GitHub)
Access Controlकौन file edit/delete कर सकता है — permissions
Backup & RecoveryAccidental delete/corruption के बाद restore करने की क्षमता
Workflow ManagementTeam members के बीच approval व update process

🔀 Version Control in Web Publishing

Version control system (VCS) जैसे Git developers को यह देखने देता है कि किसने कौन-सा change किया, व जरूरत पड़ने पर पुराना version restore किया जा सकता है।

  • Popular Tools: Git, GitHub, Bitbucket, GitLab
  • Benefits: Track changes, collaborate easily, rollback facility

💾 Backup and Recovery

  • Types: Manual & Automated
  • Storage Options: Local drive, Cloud storage (Google Drive, Dropbox), cPanel backups
  • Frequency: Daily/Weekly depending on site activity
✅ Tip: Backup को हमेशा अलग storage में रखें — "Same server = Risky"।

🧰 Document Management Tools

CategoryTools
Content Management SystemsWordPress, Joomla, Drupal
Versioning ToolsGit, Subversion
File ManagementFileZilla, cPanel File Manager
Cloud CollaborationGoogle Drive, Notion, Dropbox

✅ Advantages

  • Organization व easy access
  • Faster updates व teamwork
  • Data security व consistency
  • Reduced redundancy व error chances

⚠️ Limitations

  • Setup व maintenance के लिए technical knowledge चाहिए।
  • Large systems के लिए cost व configuration बढ़ जाती है।
  • Cloud-based tools में privacy concerns हो सकते हैं।
Exam Point: Git सबसे popular version control tool है। Document Management = Storage + Version Control + Backup + Access Control + Workflow।
8.6

Web Page Design Considerations & Principles — सुंदर व Usable Design

किसी website का success केवल content पर नहीं, बल्कि उसके design व usability पर भी निर्भर करता है — यह user को आसानी से navigate करने व जानकारी जल्दी पाने में मदद करता है।

🔹 Key Considerations in Web Design

ConsiderationDescription
Layout & StructureHeader → Navigation → Content → Footer जैसा logical structure
ConsistencyFonts, colors, button styles हर page पर समान हों
NavigationUser आसानी से सभी sections तक पहुँच सके — clear menus
ReadabilityFont size, contrast व spacing comfort के अनुसार हो
Responsivenessहर device (mobile/tablet/desktop) पर सही दिखे
Loading SpeedOptimized images व minified CSS/JS
Accessibilityalt text, ARIA labels — सभी users के लिए
SEO OptimizationClean URLs, meta tags, heading hierarchy (H1–H6)

🎨 Design Principles (डिज़ाइन के मूल सिद्धांत)

PrincipleDescriptionExample
BalanceVisual elements का weight बराबरLeft side image → Right side text
ContrastText-background के बीच पर्याप्त अंतरWhite bg + Dark text
EmphasisImportant elements highlight करनाCall-to-Action buttons
AlignmentElements properly alignedLeft-aligned text blocks
RepetitionColors/icons/layout में repetition से brand identitySame button color
White SpaceContent के बीच खाली space readability बढ़ाता हैPadding around content
Unityसभी elements का coordinationComplete cohesive look

📱 Responsive Design

Responsive Design ensure करता है कि web page हर screen size पर सही दिखे — इसके लिए CSS media queries, flexbox, व grid layout का उपयोग होता है।

📱 media query example
@media (max-width: 768px) {
  body { font-size: 16px; }
  .container { flex-direction: column; }
}
💡 Fact: Responsive design का पहला principle — "Mobile First Design Approach"।

🎨 Color and Typography

  • Color psychology का उपयोग करें (blue = trust, green = growth)।
  • Text hierarchy (H1 → H2 → Paragraph) follow करें।
  • Font family readable हो (Segoe UI, Roboto, Arial)।
  • High contrast text-background readability बढ़ाता है।

🧩 Web Page Elements

Elementकाम
HeaderTitle/logo व navigation links
Navigation BarSite structure का main access point
Content Areaमुख्य text, images, videos
SidebarAdditional links या ads
FooterCopyright, contact info, social links

✅ Best Practices

  • Mobile-first responsive layout बनाएँ।
  • Fast loading images व optimized code रखें।
  • Clear call-to-action (CTA) buttons दें।
  • Consistent color palette व readable font चुनें।
  • Regular testing करें — desktop + mobile दोनों पर।
Exam Point: 3 Design Considerations + 3 Principles साथ में short examples लिखने से full marks मिलते हैं। Mobile-First Approach याद रखें।
8.7

Search Engines & Meta Search Engines — Information ढूँढना

Search Engine web-based tool है जो user query के आधार पर web से information search, index व retrieve करता है। Meta Search Engine कई search engines के results collect करके combined list दिखाता है।

🔄 Working of a Search Engine (3 Phases)

Search Engine Working

Crawling Indexing Ranking
  1. Crawling: Web crawler (spider/bot) web pages explore करता है व नए links खोजता है।
  2. Indexing: प्राप्त pages database (index) में store किए जाते हैं ताकि search जल्दी हो सके।
  3. Searching & Ranking: User query पर indexed data से सबसे relevant results दिखाए जाते हैं।

🔹 Components of a Search Engine

Componentकाम
Web Crawler (Spider)Internet से web pages collect करता है
IndexerData को keywords/metadata के आधार पर store करता है
Databaseसारे indexed web pages का संग्रह
Search AlgorithmQuery के अनुसार best results निकालने की logic
User Interfaceजहाँ user query डालता है व results देखता है

🌐 Popular Search Engines vs Meta Search Engines

FeatureSearch EngineMeta Search Engine
Data SourceOwn crawled databaseMultiple search engines के results
Crawlingहाँ (spiders/bots)नहीं
Result AccuracyHigh (ranking algorithm)Moderate
ExampleGoogle, Bing, Yahoo, DuckDuckGoDogpile, Metacrawler, Ixquick

📈 Search Engine Optimization (SEO) Basics

SEO वह प्रक्रिया है जिससे website search engines में higher rank पर आती है — यह web publishing का महत्वपूर्ण हिस्सा है।

  • On-Page SEO: Title tags, meta description, keywords, content quality।
  • Off-Page SEO: Backlinks, social media promotion।
  • Technical SEO: Site speed, mobile responsiveness, sitemap।

✅ Advantages

  • Search Engines: Fast, accurate, regularly updated, personalized results।
  • Meta Search Engines: Multiple sources से combined broader coverage।

⚠️ Limitations

  • Search Engines — biased या filtered results possible।
  • Meta Search Engines — duplicate results व low relevance।
Exam Point: Crawling→Indexing→Ranking क्रम याद रखें। Google का algorithm PageRank कहलाता है (backlinks पर आधारित)। Meta search engines खुद crawl नहीं करते।
8.8

World Wide Web (WWW) — Interlinked Documents की दुनिया

WWW interlinked hypertext documents व multimedia content का system है जिसे HTTP/HTTPS के ज़रिए access किया जाता है। इसे Tim Berners-Lee ने 1991 में CERN (Switzerland) में बनाया था।

📜 History & Evolution

FactDetail
Invented BySir Tim Berners-Lee (CERN, Switzerland)
Year1991 (Public release)
First Websiteinfo.cern.ch
OrganizationW3C (World Wide Web Consortium) standards maintain करता है

🔹 Components of WWW

  • Web Browser: Client application जो web pages access करता है (Chrome, Firefox)।
  • Web Server: जहाँ web pages store रहते हैं।
  • Web Pages: HTML documents (text, images, videos)।
  • Hyperlinks: अन्य documents से जुड़ने वाले clickable links।
  • Protocols: HTTP/HTTPS — data transfer का तरीका।

🔄 How WWW Works

Browser से Server तक — Request/Response

Browser (Client) Web Server HTTP Request HTTP Response (HTML/CSS/JS)
  1. User browser में URL टाइप करता है।
  2. Browser HTTP request भेजता है web server को।
  3. Server requested web page (HTML file) भेजता है।
  4. Browser page को render करके user को दिखाता है।

✨ Features of WWW

  • Global information sharing system।
  • Hypertext-based interconnected documents।
  • Multimedia content (text, audio, video, animation) support।
  • Hyperlinks से easy navigation।
  • Platform independent access — किसी भी device/browser से।
  • Client-server architecture पर आधारित।

✅ Advantages

  • Easy व instant access to global information।
  • Multimedia communication support करता है।
  • Education, business, research के लिए उपयोगी।
  • Hyperlink structure से quick navigation।

⚠️ Limitations

  • Information overload व data accuracy की कमी।
  • Security व privacy issues (phishing, data theft)।
  • Internet dependency — बिना connection के access नहीं।

⚖️ WWW vs Internet

BasisInternetWWW
DefinitionGlobal network of computersSystem of web pages on Internet
ComponentsHardware + NetworkWeb pages + Hyperlinks + Browsers
ProtocolTCP/IPHTTP/HTTPS
Existenceपुराना (1969 से)नया (1991 से)
ExampleEmail, FTP, ChatWebsites, Web Apps
✅ याद रखने का तरीका: Internet "roads" हैं, WWW उन पर चलने वाली "vehicles" हैं।
Exam Point: Inventor: Tim Berners-Lee; Year: 1991; Organization: W3C। WWW ≠ Internet — यह बहुत common confusion है, ध्यान से याद करें।
8.9

Web Browsers — Websites देखने का Software

Web Browser application software है जो users को WWW पर information access, retrieve व view करने देता है — user व server के बीच interface की तरह काम करता है।

🔹 Main Functions of a Web Browser

  • Rendering: HTML, CSS, JS को visual form में दिखाना।
  • Navigation: URLs/links के ज़रिए pages के बीच move करना।
  • Caching: बार-बार visit होने वाले pages temporary memory में store करना।
  • Bookmarking: Favorite sites को future access के लिए save करना।
  • Downloading: Web content (files, images, videos) system में store करना।
  • Security: HTTPS encryption, popup-blocking, privacy controls।
  • Extensions/Add-ons: Browser की functionality बढ़ाने के लिए plugins।

🏗️ Components of a Web Browser

Browser Architecture

User Interface Browser Engine Rendering Engine (Blink/Gecko/WebKit) JavaScript Engine (V8) Network & Storage Modules
Componentकाम
User Interface (UI)Address bar, back-forward buttons, tabs, menus
Browser EngineUI व rendering engine के बीच coordination
Rendering EngineHTML/CSS parse करके visual layout तैयार करता है
Networking ComponentHTTP/HTTPS requests handle करता है
JavaScript InterpreterJS code execute करता है
Data StorageCookies, cache, local storage manage करता है

🔹 Types of Web Browsers

TypeDescriptionExample
Text-Basedकेवल text show करते हैंLynx
GraphicalText+Images+Multimedia दिखाते हैंChrome, Firefox
MobileSmartphones के लिए optimizedOpera Mini, Samsung Internet
💡 Fact: पहला graphical web browser "Mosaic" था (1993) — जिससे modern web की शुरुआत हुई।

🌐 Popular Browsers & Rendering Engines

BrowserDeveloperRendering EnginePlatform
Google ChromeGoogleBlinkWindows, macOS, Android
Mozilla FirefoxMozilla FoundationGeckoWindows, Linux, Android
SafariAppleWebKitmacOS, iOS
Microsoft EdgeMicrosoftChromium (Blink)Windows, macOS
OperaOpera SoftwareBlinkCross-Platform

⌨️ Common Browser Shortcuts

ActionShortcut
Open New TabCtrl+T
Close TabCtrl+W
Reopen Closed TabCtrl+Shift+T
Open HistoryCtrl+H
Open DownloadsCtrl+J
Refresh PageF5

✅ Advantages

  • Easy access to websites व online resources।
  • Multimedia व interactivity support करता है।
  • HTTPS व privacy options से secure browsing।
  • Bookmarking व tabbed browsing usability बढ़ाते हैं।

⚠️ Limitations

  • High memory usage (multiple tabs के साथ)।
  • Privacy risks (tracking cookies, ads)।
  • पुरानी websites के साथ compatibility issues।
💡 Tip: Private mode (Incognito) temporary browsing history save नहीं करता।
Exam Point: Chrome=Blink, Firefox=Gecko, Safari=WebKit — engines याद रखें। पहला browser Mosaic (1993)। Browser cache loading speed तेज़ बनाता है।
8.10

HTTP (HyperText Transfer Protocol) — Web की भाषा

HTTP application-level communication protocol है जिसका उपयोग web browser व server के बीच hypertext documents व अन्य resources transfer करने के लिए किया जाता है। यह stateless protocol है — हर request independent होती है।

📜 History & Versions

VersionDetail
Developed byTim Berners-Lee (CERN, 1990)
HTTP/0.9पहला simple version — केवल text data
HTTP/1.0Request/response headers introduce किए
HTTP/1.1Persistent connections व caching
HTTP/2.0Multiplexing, compression, बेहतर speed
HTTP/3.0QUIC उपयोग करता है (तेज़ व अधिक secure)

🔄 Working of HTTP

  1. User browser में URL डालता है।
  2. Browser HTTP request भेजता है web server को।
  3. Server request के अनुसार HTML/CSS/JS data return करता है।
  4. Browser response को render करके page display करता है।
🔁 Client-Server Request/Response
Client (Browser)  →  HTTP Request  →  Server
Client (Browser)  ←  HTTP Response ←  Server

📨 HTTP Message Structure

MessageParts
Request (Client से)Request Line (Method+URL+Version) → Header Fields (Host, User-Agent) → Body (optional)
Response (Server से)Status Line (Protocol+Code) → Headers (Content-Type, Date) → Body (actual content)
📨 Example Request Line
GET /index.html HTTP/1.1
Host: boostingskills.com

🔹 Common HTTP Methods

Methodकाम
GETServer से data retrieve करना
POSTServer को data भेजना (forms, uploads)
PUTExisting resource update करना
DELETEServer से resource हटाना
HEADGET जैसा, पर बिना body के (testing के लिए)
💡 Tip: GET URL में data भेजता है; POST body में data भेजता है।

🔢 Common HTTP Status Codes

CodeMeaning
200OK — Request successful
301Moved Permanently
403Forbidden — Access denied
404Not Found
500Internal Server Error

🔒 HTTPS (Secure HTTP)

HTTPS HTTP का secure version है जो SSL/TLS encryption उपयोग करता है — डेटा को सुरक्षित रखता है ताकि कोई तीसरा व्यक्ति उसे intercept न कर सके।

PropertyHTTPHTTPS
Port80443
SecurityPlain text (unencrypted)SSL/TLS encrypted
Exam Point: Full Form: HyperText Transfer Protocol; developed by Tim Berners-Lee (1990); Port 80/443; Methods GET/POST/PUT/DELETE; Nature: Stateless। Working diagram + 3 methods + status codes (200, 404) ज़रूर लिखें।
8.11

Web Publishing Tools — Design से Deploy तक के Tools

Web Publishing Tools websites को design, develop, upload व manage करने में मदद करते हैं — beginners व developers दोनों के लिए उपयोगी।

🔹 Types of Web Publishing Tools

TypeकामExamples
Web Design ToolsLayout, graphics व page design बनानाAdobe Dreamweaver, Figma, Canva, MS FrontPage
CMSबिना coding website manage करनाWordPress, Joomla, Drupal
File Transfer ToolsLocal से server पर files upload करनाFileZilla, Cyberduck, WinSCP
Hosting Control PanelsServer management व configurationcPanel, Plesk
Online Website BuildersDrag-and-drop editors (beginners के लिए)Wix, Squarespace, Google Sites, Weebly

⚙️ Functions of Web Publishing Tools

  • Web pages design करना (text, images, links, multimedia)।
  • HTML, CSS, JavaScript code generate करना।
  • FTP के माध्यम से website upload करना।
  • SEO tags, metadata व responsive design सेट करना।
  • Website updates व backups manage करना।

📋 Examples and Features

ToolTypeKey Features
Adobe DreamweaverWeb DesignWYSIWYG editor, HTML/CSS/JS support
WordPressCMSEasy templates, plugins, no coding
FileZillaFTP ToolUpload/download files PC से server तक
cPanelHosting PanelServer व database management
WixWebsite BuilderDrag & drop interface, cloud hosting

✅ Advantages

  • Beginners के लिए आसान website creation।
  • Pre-designed templates व visual editing।
  • Automatic HTML/CSS code generation।
  • Faster deployment व built-in SEO options।

⚠️ Limitations

  • Limited customization (खासकर free builders में)।
  • CMS plugins पर dependency बढ़ती है।
  • कुछ tools costly या hosting-bound होते हैं।
Exam Point: WordPress सबसे popular CMS है (बिना coding)। FileZilla सबसे common FTP tool है। cPanel server व database management के लिए उपयोग होता है — 4 examples व उनके uses ज़रूर लिखें।
8.12

Summary — Quick Revision (Exam से पहले पढ़ें)

  • SGML = ISO 8879 meta-language; HTML=SGML application, XML=SGML-inspired।
  • Web Hosting: Shared(cheap)/VPS/Dedicated(full)/Cloud(scalable); FTP Port=21।
  • Document Standards: HTML(web), XML(data), PDF(print), SGML(meta-standard)।
  • Publishing Components: Design → Domain → Hosting → FTP → Maintenance → SEO।
  • Document Management: Organize + Version Control (Git) + Backup + Access Control।
  • Design Principles: Balance, Contrast, Alignment, Repetition, White Space।
  • Search Engines: Crawling → Indexing → Ranking; Meta search=results combine करते हैं।
  • WWW: Tim Berners-Lee, 1991, CERN; HTTP/HTTPS protocol; WWW ≠ Internet।
  • Browsers: Chrome=Blink, Firefox=Gecko, Safari=WebKit; पहला browser Mosaic(1993)।
  • HTTP: Port 80 (HTTPS=443); Methods GET/POST/PUT/DELETE; stateless protocol।
  • Publishing Tools: WordPress(CMS), FileZilla(FTP), cPanel(hosting panel)।
8.13

Model Questions — 50 MCQs + 15 Theory Questions

❓ A. Multiple Choice Questions (50)

1

SGML का full form है —

(a) Standard General Markup Language(b) Standard Generalized Markup Language(c) Simple General Markup Language(d) System Generalized Markup Language
✔ सही उत्तर: (b) Standard Generalized Markup Language
2

SGML किस ISO standard के अंतर्गत आता है?

(a) ISO 9000(b) ISO 8879(c) ISO 27001(d) ISO 14001
✔ सही उत्तर: (b) ISO 8879
3

HTML किसका application है?

(a) XML(b) SGML(c) PDF(d) JSON
✔ सही उत्तर: (b) SGML
4

Elements/attributes के rules तय करता है —

(a) DTD(b) CSS(c) DNS(d) FTP
✔ सही उत्तर: (a) DTD
5

कई websites एक server share करती हैं —

(a) Dedicated Hosting(b) Shared Hosting(c) Cloud Hosting(d) VPS
✔ सही उत्तर: (b) Shared Hosting
6

पूरा server एक client के लिए reserved —

(a) Shared Hosting(b) Dedicated Hosting(c) Free Hosting(d) VPS
✔ सही उत्तर: (b) Dedicated Hosting
7

FTP की port number है —

(a) 20(b) 21(c) 80(d) 443
✔ सही उत्तर: (b) 21
8

FTP का full form है —

(a) File Transfer Protocol(b) Fast Transfer Protocol(c) File Transmission Process(d) File Type Protocol
✔ सही उत्तर: (a) File Transfer Protocol
9

Domain name को IP address से map करता है —

(a) FTP(b) DNS(c) HTTP(d) CMS
✔ सही उत्तर: (b) DNS
10

FTP का सबसे popular tool है —

(a) WordPress(b) FileZilla(c) cPanel(d) Photoshop
✔ सही उत्तर: (b) FileZilla
11

Print-ready format में document exchange के लिए —

(a) HTML(b) PDF(c) XML(d) CSS
✔ सही उत्तर: (b) PDF
12

Data exchange के लिए designed format —

(a) HTML(b) XML(c) JPG(d) MP3
✔ सही उत्तर: (b) XML
13

PDF का full form है —

(a) Portable Document Format(b) Print Document File(c) Personal Data Format(d) Public Document Format
✔ सही उत्तर: (a) Portable Document Format
14

Web Publishing के components का सही क्रम है —

(a) Hosting→Design→Domain(b) Design→Domain→Hosting→Maintenance(c) FTP→Design→Hosting(d) Maintenance→Design→FTP
✔ सही उत्तर: (b) Design→Domain→Hosting→Maintenance
15

Website files को browser तक पहुँचाता है —

(a) Web Server(b) DNS(c) CMS(d) FTP client
✔ सही उत्तर: (a) Web Server
16

Web Server का उदाहरण है —

(a) Chrome(b) Apache(c) FileZilla(d) WordPress
✔ सही उत्तर: (b) Apache
17

Changes track व restore करने का tool —

(a) Git(b) FTP(c) DNS(d) HTTP
✔ सही उत्तर: (a) Git
18

Document Management में शामिल नहीं है —

(a) Version Control(b) Backup(c) Access Control(d) Domain Purchase
✔ सही उत्तर: (d) Domain Purchase
19

Backup को कहाँ रखना सुरक्षित है?

(a) उसी server पर(b) अलग storage में(c) Backup की ज़रूरत नहीं(d) कहीं भी
✔ सही उत्तर: (b) अलग storage में
20

Visual elements का weight बराबर रखना कहलाता है —

(a) Contrast(b) Balance(c) Repetition(d) Alignment
✔ सही उत्तर: (b) Balance
21

Text-background का अंतर readability देता है —

(a) Contrast(b) White Space(c) Repetition(d) Balance
✔ सही उत्तर: (a) Contrast
22

पहले mobile के लिए design करने का approach —

(a) Desktop-First(b) Mobile-First(c) Print-First(d) Tablet-First
✔ सही उत्तर: (b) Mobile-First
23

Responsive design के लिए CSS में उपयोग होता है —

(a) Media Queries(b) DNS Records(c) FTP Commands(d) HTTP Headers
✔ सही उत्तर: (a) Media Queries
24

Search Engine का पहला step है —

(a) Ranking(b) Indexing(c) Crawling(d) Searching
✔ सही उत्तर: (c) Crawling
25

Web pages को explore करने वाला program —

(a) Crawler/Spider(b) Browser Engine(c) FTP Client(d) CMS
✔ सही उत्तर: (a) Crawler/Spider
26

Google का ranking algorithm कहलाता है —

(a) PageRank(b) SiteRank(c) WebSort(d) IndexSort
✔ सही उत्तर: (a) PageRank
27

Meta Search Engine का उदाहरण है —

(a) Google(b) Dogpile(c) Bing(d) Yahoo
✔ सही उत्तर: (b) Dogpile
28

Meta Search Engine खुद क्या नहीं करता?

(a) Results दिखाना(b) Web crawl करना(c) Combine करना(d) Query लेना
✔ सही उत्तर: (b) Web crawl करना
29

WWW का आविष्कार किसने किया?

(a) Bill Gates(b) Tim Berners-Lee(c) Steve Jobs(d) Larry Page
✔ सही उत्तर: (b) Tim Berners-Lee
30

WWW कब बनाया गया?

(a) 1989(b) 1991(c) 1995(d) 2000
✔ सही उत्तर: (b) 1991
31

WWW किस organization में बनाया गया?

(a) MIT(b) CERN(c) NASA(d) IBM
✔ सही उत्तर: (b) CERN
32

WWW standards कौन maintain करता है?

(a) ISO(b) W3C(c) IEEE(d) ICANN
✔ सही उत्तर: (b) W3C
33

WWW और Internet में सही संबंध —

(a) दोनों एक ही हैं(b) WWW, Internet का हिस्सा है(c) Internet, WWW का हिस्सा है(d) कोई संबंध नहीं
✔ सही उत्तर: (b) WWW, Internet का हिस्सा है
34

पहला graphical web browser था —

(a) Chrome(b) Mosaic(c) Netscape(d) Firefox
✔ सही उत्तर: (b) Mosaic
35

Chrome browser का rendering engine —

(a) Gecko(b) WebKit(c) Blink(d) Trident
✔ सही उत्तर: (c) Blink
36

Firefox browser का rendering engine —

(a) Gecko(b) Blink(c) WebKit(d) V8
✔ सही उत्तर: (a) Gecko
37

Safari browser का rendering engine —

(a) Blink(b) Gecko(c) WebKit(d) Chromium
✔ सही उत्तर: (c) WebKit
38

Bार-बार visit होने वाले pages temporary store करना —

(a) Cookies(b) Caching(c) Bookmark(d) History
✔ सही उत्तर: (b) Caching
39

HTTP का full form है —

(a) HyperText Transfer Protocol(b) High Transfer Text Protocol(c) HyperText Transmission Process(d) Home Transfer Protocol
✔ सही उत्तर: (a) HyperText Transfer Protocol
40

HTTP की port number है —

(a) 21(b) 80(c) 443(d) 25
✔ सही उत्तर: (b) 80
41

HTTPS की port number है —

(a) 21(b) 80(c) 443(d) 8080
✔ सही उत्तर: (c) 443
42

Server से data retrieve करने वाला HTTP method —

(a) GET(b) POST(c) DELETE(d) PUT
✔ सही उत्तर: (a) GET
43

Form data submit करने वाला method —

(a) GET(b) POST(c) HEAD(d) TRACE
✔ सही उत्तर: (b) POST
44

Status code 404 का मतलब है —

(a) OK(b) Not Found(c) Server Error(d) Redirect
✔ सही उत्तर: (b) Not Found
45

Status code 200 का मतलब है —

(a) Not Found(b) Server Error(c) Request Successful(d) Forbidden
✔ सही उत्तर: (c) Request Successful
46

HTTP एक ___ protocol है।

(a) Stateful(b) Stateless(c) Dynamic(d) Encrypted
✔ सही उत्तर: (b) Stateless
47

HTTPS किस technology से data encrypt करता है?

(a) FTP(b) SSL/TLS(c) DNS(d) CMS
✔ सही उत्तर: (b) SSL/TLS
48

सबसे popular CMS है —

(a) FileZilla(b) WordPress(c) cPanel(d) Photoshop
✔ सही उत्तर: (b) WordPress
49

Server व database management के लिए tool —

(a) cPanel(b) FileZilla(c) Figma(d) Canva
✔ सही उत्तर: (a) cPanel
50

Drag-and-drop website builder का उदाहरण —

(a) WordPress(b) Wix(c) FileZilla(d) Git
✔ सही उत्तर: (b) Wix

📝 B. 15 Theory Questions (Short Answers)

  1. SGML क्या है? HTML से इसका संबंध बताइए।SGML (Standard Generalized Markup Language) ISO 8879 standard के अंतर्गत आने वाला meta-language है जो documents की structure व meaning define करता है। HTML इसी का एक application है — यानी SGML से derive हुई एक specific markup language।
  2. Web Hosting क्या है? इसके 4 प्रकार लिखिए।Web Hosting एक service है जो website files को server पर store करके उसे इंटरनेट पर accessible बनाती है। प्रकार — Shared Hosting, VPS Hosting, Dedicated Hosting, Cloud Hosting।
  3. FTP क्या है? इसका उपयोग समझाइए।FTP (File Transfer Protocol) local computer से files को remote web server पर upload/download करने के लिए उपयोग होता है। Port 21 पर काम करता है; FileZilla जैसे tools से इसका उपयोग किया जाता है।
  4. Document Interchange Standards क्यों ज़रूरी हैं?ये अलग-अलग computer systems व software के बीच documents को consistent format में share करना संभव बनाते हैं, जिससे compatibility बनी रहती है व data loss नहीं होता। उदाहरण — HTML, XML, PDF।
  5. Web Publishing के मुख्य components लिखिए।Website Creation, Domain Registration, Web Hosting, File Transfer (FTP), Maintenance, Promotion & SEO — ये सभी मिलकर website को design से live तक ले जाते हैं।
  6. Document Management क्या है? इसके key elements लिखिए।Document Management website की सभी files को organize, version-control व backup रखने की प्रक्रिया है। Key elements — Storage, Version Control (Git), Access Control, Backup & Recovery।
  7. Web Design के कोई 3 principles समझाइए।Balance (visual elements का बराबर weight), Contrast (text-background का अंतर readability देता है), White Space (खाली जगह content को स्पष्ट बनाती है)।
  8. Search Engine कैसे काम करता है?Search Engine तीन चरणों में काम करता है — Crawling (crawler pages explore करता है), Indexing (pages को database में store करता है), Ranking (query के अनुसार relevant results दिखाता है)।
  9. Search Engine और Meta Search Engine में अंतर बताइए।Search Engine खुद web crawl करके अपना index बनाता है (जैसे Google)। Meta Search Engine खुद crawl नहीं करता, बल्कि कई search engines के results combine करके दिखाता है (जैसे Dogpile)।
  10. WWW क्या है? इसका आविष्कार किसने किया?World Wide Web इंटरनेट का वह हिस्सा है जहाँ hyperlinked web pages HTTP/HTTPS protocol से access किए जाते हैं। इसे Tim Berners-Lee ने 1991 में CERN में बनाया।
  11. WWW और Internet में अंतर लिखिए।Internet computers का global network है (TCP/IP protocol, 1969 से)। WWW उस network पर चलने वाली hyperlinked documents की system है (HTTP/HTTPS protocol, 1991 से) — WWW Internet का एक हिस्सा है, पूरा Internet नहीं।
  12. Web Browser क्या है? इसके कोई 3 functions लिखिए।Web Browser एक software है जो web pages को access व display करता है। Functions — Rendering (HTML/CSS/JS दिखाना), Navigation (links से move करना), Caching (pages temporary store करना)।
  13. HTTP क्या है? इसके मुख्य methods लिखिए।HTTP (HyperText Transfer Protocol) browser व server के बीच data transfer का protocol है (port 80, stateless)। Methods — GET (data लेना), POST (data भेजना), PUT (update करना), DELETE (हटाना)।
  14. HTTP और HTTPS में अंतर बताइए।HTTP data को plain text (unencrypted) में भेजता है, port 80 पर काम करता है। HTTPS SSL/TLS से data encrypt करता है, port 443 पर काम करता है — अधिक सुरक्षित है।
  15. Web Publishing Tools के कोई 4 उदाहरण व उनका काम लिखिए।WordPress (CMS — बिना coding website manage), FileZilla (FTP — files upload/download), cPanel (hosting control panel — server management), Adobe Dreamweaver (visual web design tool)।
Revision Tip: Port numbers (FTP=21, HTTP=80, HTTPS=443), WWW facts (Tim Berners-Lee/1991/CERN), browser rendering engines (Blink/Gecko/WebKit), व HTTP methods/status codes — ये facts इस chapter के आधे MCQs cover कर देते हैं।
8.14

Top Trending Q&A — 36 Viva-Style Questions (Rapid Revision)

ये questions Web Publishing & Browsing के सबसे ज़्यादा पूछे जाने वाले सवाल हैं — छोटे व सटीक जवाबों के साथ। O Level व viva दोनों के लिए perfect rapid-revision tool।

🧩 General Basics

#QuestionAnswer
Q1What is the Internet?Global network connecting millions of computers worldwide।
Q2Internet व WWW में अंतर?Internet network है; WWW उस network पर चलने वाले web pages की system है।
Q3WWW का आविष्कार किसने व कब किया?Sir Tim Berners-Lee ने 1991 में CERN (Switzerland) में।
Q4Web Page क्या है?HTML में लिखा document जो browser से देखा जा सकता है।
Q5Website क्या है?एक ही domain के अंतर्गत related web pages का collection।

🌍 Domain, Hosting & Terminology

#QuestionAnswer
Q6Domain Name क्या है?Website का human-readable address (जैसे www.example.com)।
Q7Web Hosting क्या है?Service जो website files server पर store करके online accessible बनाती है।
Q8URL क्या है?Uniform Resource Locator — किसी web resource का address बताता है।
Q9DNS क्या है?Domain Name System — domain names को IP addresses में बदलता है।
Q10HTML क्या है?HyperText Markup Language — web pages बनाने के लिए उपयोग होती है।

🔍 Search Engines & Meta Search

#QuestionAnswer
Q11Search Engine क्या है?वह program जो web search करके relevant results दिखाता है (Google, Bing)।
Q12Meta Search Engine क्या है?यह कई search engines के results combine करके दिखाता है (जैसे Dogpile)।
Q13Search Engine के मुख्य parts?Web Crawler, Indexer, Database, व Search Algorithm।
Q14दो privacy-based search engines?DuckDuckGo व StartPage।
Q15PageRank क्या है?Google का algorithm जो backlinks व relevance के आधार पर pages rank करता है।

🌐 WWW और Web Browsers

#QuestionAnswer
Q16WWW क्या है?Internet पर accessible interlinked hypertext documents की system।
Q17WWW किस protocol का उपयोग करता है?HTTP/HTTPS।
Q18Web Browser क्या है?Web pages access व display करने वाला software (Chrome, Firefox)।
Q19Rendering Engine क्या है?Browser का वह component जो web pages को display करता है (Blink, Gecko, WebKit)।
Q20पहला graphical web browser कौन-सा था?Mosaic (1993)।

⚙️ HTTP & HTTPS

#QuestionAnswer
Q21HTTP का full form?HyperText Transfer Protocol।
Q22HTTP किस port पर चलता है?Port 80।
Q23HTTPS क्या है?HTTP का secure version — SSL/TLS encryption उपयोग करता है (Port 443)।
Q24दो HTTP methods बताइए।GET व POST।
Q25HTTP Status Code 404 का मतलब?Page Not Found।
Q26HTTP stateful है या stateless?Stateless protocol।

🧰 Web Publishing Tools

#QuestionAnswer
Q27Web Publishing क्या है?Website को इंटरनेट पर create व upload करने की प्रक्रिया।
Q28दो Web Publishing Tools बताइए।WordPress व Adobe Dreamweaver।
Q29CMS क्या है?Content Management System — बिना coding content manage करने देता है (जैसे WordPress)।
Q30FTP क्या है?File Transfer Protocol — computer से web server तक files upload करने के लिए।
Q31cPanel किसलिए उपयोग होता है?Web hosting management व file/database control के लिए।

💡 Extra Important Viva Questions

#QuestionAnswer
Q32Web Server का function क्या है?यह clients को HTTP/HTTPS के ज़रिए web content store व deliver करता है।
Q33IP Address क्या है?नेटवर्क से जुड़े हर device को दिया गया unique numerical label।
Q34SEO क्या है?Search Engine Optimization — website की search ranking सुधारता है।
Q35Hyperlink का मतलब क्या है?एक clickable link जो एक document/page को दूसरे से जोड़ता है।
Q36Browser में Cache का function क्या है?यह frequently visited pages को store करके faster loading देता है।

🏁 Quick Revision Table

TopicKeyword/Key Fact
WWW InventorTim Berners-Lee (1991)
HTTP Port80
HTTPS Port443
First BrowserMosaic
CMS ExampleWordPress
FTP ToolFileZilla
Search Engine ExampleGoogle, Bing
Meta Search ExampleDogpile, StartPage
Protocol for WebHTTP/HTTPS
Rendering EngineBlink (Chrome), Gecko (Firefox)
✅ Exam Tip: Viva या written paper में HTTP, WWW, Browser व Web Publishing के definitions व examples सबसे ज़्यादा पूछे जाते हैं — इन्हें शब्दशः याद कर लीजिए। छोटे facts (port numbers, inventors, tools) भी objective questions में आते हैं।
FAQ

अक्सर पूछे जाने वाले प्रश्न

Web Publishing क्या है?
Web Publishing वह प्रक्रिया है जिसमें वेबसाइट को इंटरनेट पर upload किया जाता है ताकि user उसे worldwide access कर सकें। इसमें domain, hosting, FTP व website files शामिल होते हैं।
Web Hosting क्या होती है?
Web Hosting एक online service है जहाँ website की files (HTML, CSS, Images, JS) store की जाती हैं ताकि इंटरनेट पर users साइट access कर सकें।
HTTP और HTTPS में क्या अंतर है?
HTTP data को plain text में भेजता है (port 80) जबकि HTTPS data को SSL/TLS से encrypt करके सुरक्षित बनाता है (port 443)।
Web Browser क्या है?
Web Browser एक software है जो websites को access व display करता है — उदाहरण: Google Chrome, Firefox, Edge, Safari, Opera।
Search Engine कैसे काम करता है?
Search Engine webpages को crawl, index व rank करके users को सबसे relevant search results दिखाता है — उदाहरण: Google, Bing, Yahoo।

🎉 बधाई हो! M2-R5 Web Design Module पूरा हुआ

सभी 8 chapters complete — अब mock test देकर अपनी तैयारी परखें और paid PDF course से revision करें।

Mock Test शुरू करें ➜