前端三要素:HTML(结构)、CSS(样式)、JavaScript(行为)。

前端三标准:Usability(可用性)、Accessibility(可访问 )和Maintainability(可维护性)。

self-closing label(自闭合标签)没有 / 结尾

https://html.spec.whatwg.org/multipage/syntax.html#start-tags

https://html.spec.whatwg.org/multipage/syntax.html#void-elements

所以 <img> <input> 不需要 / 结尾。

/ 对于 void elements 无效。

void elements: area, base, br, col, embed, hr, img, input, link, meta, param, source, track, wbr