docs(10_Wiki): Dev 폴더 누락분 반영 — Topic_Programming으로 통합
이전 재구성 작업에서 Dev/ 폴더가 누락되었던 것을 반영. - Dev/Topic_Programming(중첩 폴더, 78개)은 Dev 자체 최상위 폴더들 (Architecture/Conventions/Engineering_Intelligence 등)과 완전 중복이라 제거. - Dev 최상위 엔지니어링 지식 폴더(Architecture/Conventions/Engineering_Intelligence/ Failure_Library/Generalized_Principles/Language/Pattern_Catalog/Platform_Guides/ Subsystems, 77개)는 이미 Topic_Programming/Topic_Programming에 더 최신 버전이 존재해 중복 제거(고유 콘텐츠 1개는 예외 처리하여 이동 보존). - Dev의 W3Schools 언어 튜토리얼 폴더(Topic_C/CPP/CSS/CSharp/HOWTO/HTML/Java/ JavaScript/PHP/Python/SQL/W3CSS, 1201개)는 전부 Topic_Programming 하위로 이동. - 에이전트 운영 상태(.astra/docs)는 그대로 유지, 콘텐츠 폴더만 정리. - Topic_Programming 최종 문서 수: 2784 → 3985.
This commit is contained in:
@@ -0,0 +1,76 @@
|
||||
---
|
||||
id: w3css-web-html
|
||||
title: "W3CSS Web HTML Skeleton"
|
||||
category: "Programming_Language"
|
||||
status: "draft"
|
||||
verification_status: "conceptual"
|
||||
canonical_id: ""
|
||||
aliases: ["html skeleton", "reusable boilerplate", "W3.CSS HTML 스켈레톤"]
|
||||
duplicate_of: ""
|
||||
source_trust_level: "B"
|
||||
confidence_score: 0.84
|
||||
created_at: 2026-07-04
|
||||
updated_at: 2026-07-04
|
||||
review_reason: ""
|
||||
merge_history: []
|
||||
tags: ["w3css", "css-framework", "w3schools", "html-boilerplate"]
|
||||
raw_sources: ["https://www.w3schools.com/w3css/w3css_web_html.asp"]
|
||||
applied_in: []
|
||||
github_commit: ""
|
||||
---
|
||||
|
||||
# [[W3CSS Web HTML Skeleton]]
|
||||
|
||||
## 🎯 한 줄 통찰 (One-line insight)
|
||||
The source explicitly claims "head tags are not needed in HTML" and shows a skeleton with `<meta>`, `<title>`, `<link>`, `<style>`, `<script>` all placed directly under `<html>` with no `<head>` wrapper — treating "everything before `<body>`" as the head implicitly, which is valid HTML5 parsing behavior but a deliberately minimal/unconventional style choice most tutorials wouldn't teach as the default skeleton. [S1]
|
||||
|
||||
## 🧠 핵심 개념 (Core concepts)
|
||||
- **The reusable skeleton** — `<!DOCTYPE html>`, `<html lang="en">`, `<meta charset="UTF-8">`, `<title>`, `<meta name="viewport">`, `<link rel="stylesheet">`, `<style></style>`, `<script src=""></script>`, then `<body>`. [S1]
|
||||
- **No explicit `<head>` tag** — the skeleton omits `<head>`/`</head>` entirely, relying on the browser's implicit head-content parsing rule. [S1]
|
||||
- **Viewport meta tag** — `<meta name="viewport" content="width=device-width,initial-scale=1">` is called out specifically as what "makes the page look good on all screen sizes." [S1]
|
||||
- **Div-wrapping habit** — the chapter explicitly recommends "packing" HTML sections in `<div>` elements and preparing to give each a class name, anticipating the next chapter's CSS styling step. [S1]
|
||||
|
||||
## 📖 세부 내용 (Details)
|
||||
- The complete reusable skeleton: `<!DOCTYPE html><html lang="en"><meta charset="UTF-8"><title>Page Title</title><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="stylesheet" href=""><style></style><script src=""></script><body><img src="img_la.jpg" alt="LA" style="width:100%"><div class=""><h1>This is a Heading</h1><p>This is a paragraph.</p></div></body></html>`. [S1]
|
||||
|
||||
## ⚖️ 모순 및 업데이트 (Contradictions & updates)
|
||||
- **head 태그 생략의 의도적 선택**: "HTML에서 head 태그는 필요 없다"는 문장과 함께 head 없이 메타/타이틀/링크/스타일/스크립트를 바로 html 아래 배치하는 것이 이 스켈레톤의 의도적 특징임이 확인됨. [S1]
|
||||
|
||||
## 🛠️ 적용 사례 (Applied in summary)
|
||||
현재 발견된 실제 적용 사례가 없습니다 — 이 스켈레톤을 모든 프로젝트의 시작점으로 그대로 재사용하는 것이 실전 워크플로우의 핵심이다(다음 챕터에서 stylesheet/script src를 채워 넣는 방식으로 확장). [S1]
|
||||
|
||||
## 💻 코드 패턴 (Code patterns)
|
||||
The reusable HTML skeleton meant to be copied verbatim into every new project:
|
||||
```html
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<meta charset="UTF-8">
|
||||
<title>Page Title</title>
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<link rel="stylesheet" href="">
|
||||
<style>
|
||||
</style>
|
||||
<script src=""></script>
|
||||
<body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
```
|
||||
|
||||
## ✅ 검증 상태 및 신뢰도
|
||||
- **상태:** draft
|
||||
- **검증 단계:** conceptual
|
||||
- **출처 신뢰도:** B (W3Schools — widely used educational reference, not a primary standards body)
|
||||
- **신뢰 점수:** 0.84
|
||||
- **중복 검사 결과:** 신규 생성 (New discovery)
|
||||
|
||||
## 🔗 지식 그래프 (Knowledge Graph)
|
||||
- **상위/루트:** [[W3.CSS Tutorial]]
|
||||
- **관련 개념:** [[W3CSS Web]], [[W3CSS Web CSS]]
|
||||
- **참조 맥락:** 재사용 가능한 HTML 스켈레톤 — 스타일시트 연결(Web CSS) 챕터로 이어짐.
|
||||
|
||||
## 📚 출처 (Sources)
|
||||
- [S1] W3Schools — Using an HTML Skeleton — https://www.w3schools.com/w3css/w3css_web_html.asp
|
||||
|
||||
## 📝 변경 이력 (Change history)
|
||||
- 2026-07-04: Initial draft synthesized from the W3Schools "Using an HTML Skeleton" page (Astra wiki-curation, P-Reinforce v3.1 format).
|
||||
Reference in New Issue
Block a user