HTML

ウェブページを作成するための標準的なマークアップ言語。

プログラミング言語ではなく、情報を構造化するためのマークアップ言語です。CSSやJSと組み合わせて動作します。

        graph LR
  Center["HTML"]:::main
  Rel_css3["css3"]:::related -.-> Center
  click Rel_css3 "/terms/css3"
  Rel_http["http"]:::related -.-> Center
  click Rel_http "/terms/http"
  classDef main fill:#7c3aed,stroke:#8b5cf6,stroke-width:2px,color:white,font-weight:bold,rx:5,ry:5;
  classDef pre fill:#0f172a,stroke:#3b82f6,color:#94a3b8,rx:5,ry:5;
  classDef child fill:#0f172a,stroke:#10b981,color:#94a3b8,rx:5,ry:5;
  classDef related fill:#0f172a,stroke:#8b5cf6,stroke-dasharray: 5 5,color:#94a3b8,rx:5,ry:5;
  linkStyle default stroke:#4b5563,stroke-width:2px;

      

🧠 理解度チェック

1 / 1

🧒 5歳でもわかるように説明

🌍 HTMLは建物の「骨組み」です。どこに壁があり、どこにドアがあり、どこに窓があるかをブラウザに伝える役割をします。

🤓 Expert Deep Dive

HTML5はセマンティックマークアップを重視しており、文書の構造を検索エンジンに正しく伝えるためのタグが豊富です。

📚 出典