1. 程式人生 > >wed前端html/css簡單理解

wed前端html/css簡單理解

inf sub div wave 內聯 doctype mage 知識架構 doc

開發工具:
txt文本 / dreamwave:DW(cs6/cc) / Hbuilder / webstorm / sublime / vscode

前端:

知識架構: 3層: 結構 / 表現 / 行為

html: 結構: 標簽, div, p
css: 表現: 能夠看到的頁面的樣式.
js: 行為: 用戶的操作.

頁面的基本結構:
<!DOCTYPE html>文檔聲明:
<html>
<head>

</head>
<body>

</body>
</html>

樣式的引入方式:
1. 內聯
2. 外聯
3. 行間
行間 > 內聯 > 外聯

技術分享圖片

wed前端html/css簡單理解