1.web的組成部分:html(結(jié)構(gòu))淹仑、css(樣式)、javasript(行為)
2.五大瀏覽器以及渲染引擎 1.IE:trident? 2.firefox :gecko 3.google :blink 4.safari :webkit? 5.Opera : blink
3.html骨架結(jié)構(gòu):
<html>
? ?<head>
? ? ? ? ?<title>網(wǎng)頁(yè)的標(biāo)題</title>
? ?</head>
? ? <body>
? ? ? ?自己的代碼
? ? </body>
</html>
4.html標(biāo)簽關(guān)系:嵌套關(guān)系,并列關(guān)系
5.html標(biāo)簽的屬性:標(biāo)簽的屬性寫(xiě)在開(kāi)始標(biāo)簽的內(nèi)部.? 標(biāo)簽上可以同時(shí)存在多個(gè)屬性,屬性之間通過(guò)空格隔開(kāi) 屬性之間沒(méi)有順序之分<div style="font-size: 16px; background-color: red;" class="divclass"></div>
? ??