--- id: html-plugins title: "HTML Plug-ins" category: "Frontend" status: "draft" verification_status: "conceptual" canonical_id: "" aliases: ["HTML plugins", "object element", "embed element", "", "", "browser plug-ins"] duplicate_of: "" source_trust_level: "B" confidence_score: 0.88 created_at: 2026-06-23 updated_at: 2026-06-23 review_reason: "" merge_history: [] tags: ["html", "web", "frontend", "plugins", "object", "embed", "w3schools"] raw_sources: ["https://www.w3schools.com/html/html_object.asp"] applied_in: [] github_commit: "" --- # [[HTML Plug-ins]] ## 🎯 ν•œ 쀄 톡찰 (One-line insight) Plug-ins once extended browsers with extra functionality (Java applets, ActiveX, Flash), but most are now unsupported; the `` and `` elements remain the standard, browser-supported ways to embed external content. [S1] ## 🧠 핡심 κ°œλ… (Core concepts) - **Plug-ins = helper programs** β€” computer programs that extend the standard functionality of the browser. [S1] - **Historical uses** β€” plug-ins were used to run Java applets, run Microsoft ActiveX controls, display Flash movies, display maps, scan for viruses, and verify a bank id. [S1] - **Largely deprecated** β€” most browsers no longer support Java applets and plug-ins; ActiveX controls are no longer supported in any browser; support for Shockwave Flash has also been turned off in modern browsers. [S1] - **``** β€” defines an embedded object within an HTML document; supported in all browsers; originally designed for plug-ins but can also embed HTML pages, images, and other media. [S1] - **``** β€” also defines an embedded object; supported in all major browsers. It has no closing tag and cannot contain alternative (fallback) text. [S1] - **`` standardization** β€” long supported by browsers, but it was not part of the HTML specification before HTML5. [S1] ## 🧩 μΆ”μΆœλœ νŒ¨ν„΄ (Extracted patterns) - **Object-embed pattern** β€” `` embeds external content with a closing tag. [S1] - **Embed pattern** β€” `` embeds content with no closing tag and no fallback text. [S1] - **HTML-in-HTML pattern** β€” `` embeds another HTML page. [S1] ## πŸ“– μ„ΈλΆ€ λ‚΄μš© (Details) **Plug-ins** β€” plug-ins are computer programs that extend the standard functionality of the browser. They were designed to be used for many different purposes: to run Java applets, to run Microsoft ActiveX controls, to display Flash movies, to display maps, to scan for viruses, to verify a bank id, and so on. [S1] **Warning:** Most browsers no longer support Java applets and plug-ins. ActiveX controls are no longer supported in any browsers. The support for Shockwave Flash has also been turned off in modern browsers. [S1] **The `` element** β€” defines an embedded object within an HTML document. It was designed to embed plug-ins (like Java applets, PDF readers, and Flash players) in web pages, but can also be used to include HTML in HTML, or images. It is supported in all browsers. [S1] Embed an image with ``: [S1] ```html ``` The `` element can also display an image: [S1] ```html ``` **The `` element** β€” also defines an embedded object within an HTML document, and is supported in all major browsers. The `` element does not have a closing tag and cannot contain alternative text. [S1] Embed an image with ``: [S1] ```html ``` Embed an HTML page with ``: [S1] ```html ``` **Note:** The `` element does not have a closing tag, so it cannot contain alternative text to be displayed if the resource cannot be loaded. The element was not part of the HTML specification before HTML5, even though it had been supported by browsers for a long time. [S1] ## πŸ› οΈ 적용 사둀 (Applied in summary) The examples above are the canonical applied uses: embedding an external HTML page or an image with `` (which supports a closing tag and fallback content) versus `` (a self-closing element with no fallback). No external project/commit applications found in the source. ## πŸ’» μ½”λ“œ νŒ¨ν„΄ (Code patterns) Embed an HTML page with `` (HTML): ```html ``` Embed an image with `` (HTML, no closing tag): ```html ``` ## βš–οΈ 비ꡐ 및 선택 κΈ°μ€€ (Comparison & decision criteria) The source contrasts `` and ``: both embed external objects and are supported in all major browsers, but `` has a closing tag (so it can hold alternative/fallback content), while `` has no closing tag and cannot contain alternative text. `` has long been part of HTML; `` was not part of the HTML specification before HTML5 despite long browser support. Prefer `` when you need fallback content; `` is a terser self-closing alternative. [S1] ## βš–οΈ λͺ¨μˆœ 및 μ—…λ°μ΄νŠΈ (Contradictions & updates) No contradictions found in the source. The dominant update is deprecation: the classic plug-in ecosystem (Java applets, ActiveX, Flash/Shockwave) is no longer supported in modern browsers, so native HTML5 elements ([[HTML Video]], [[HTML Audio]], [[HTML Canvas]], [[HTML SVG]]) have replaced most plug-in use cases. [S1] ## βœ… 검증 μƒνƒœ 및 신뒰도 - **μƒνƒœ:** draft - **검증 단계:** conceptual (μ‹€μ œ 적용 사둀 발견 μ‹œ applied/validated둜 승격 κ°€λŠ₯) - **좜처 신뒰도:** B (W3Schools β€” widely used educational reference, not a primary standards body) - **μ‹ λ’° 점수:** 0.88 - **쀑볡 검사 κ²°κ³Ό:** μ‹ κ·œ 생성 (New discovery) ## πŸ”— 지식 κ·Έλž˜ν”„ (Knowledge Graph) - **μƒμœ„/루트:** [[HTML Tutorial]] - **κ΄€λ ¨ κ°œλ…:** [[HTML Media]], [[HTML Video]], [[HTML Audio]], [[HTML5]] - **μ°Έμ‘° λ§₯락:** Referenced when embedding external objects (HTML pages, images, media) or when migrating away from deprecated browser plug-ins. ## πŸ“š 좜처 (Sources) - [S1] W3Schools β€” HTML Plug-ins β€” https://www.w3schools.com/html/html_object.asp ## πŸ“ λ³€κ²½ 이λ ₯ (Change history) - 2026-06-23: Initial draft synthesized from the W3Schools "HTML Plug-ins" page (Astra wiki-curation, P-Reinforce v3.1 format).