1. 程式人生 > >html學習筆記

html學習筆記

html

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>s2</title>
</head>
<body>

</body>
</html>

<a></a> #為a標簽

body標簽

(1)跳轉:
<a href="http://www.baidu.com">wanghui</a>

(2)加空格:???
例如:

<a href="http://www.baidu.com">wang???hui</a> 

(3)p和br
p標簽:段落
br:換行

(4) H標簽
加大加粗,h1,h2...

<h1>wanghui<h1>

塊級標簽: div(白板),H系列(加大加粗,h1,h2...),p標簽(段落和段落之間有間距)
行內標簽: span(白板)

html學習筆記