1. 程式人生 > >2017.10.9筆記

2017.10.9筆記

網址 網頁中顯示 har type 標題 family html head 文檔類型

2017.10.9筆記
<HTML>:超文本標記語言。 <html lang="en">語音類型(英語)
<DOCTYPE html> 文檔類型 <meta charset="UTF-8"> 編碼格式
<title>網頁的標題</title>
<head></head> head標簽是網頁的頭部,不在網頁中顯示出來。
<body></body> body標簽是網頁的身體,在網頁中顯示。
元素嵌套 如:
<div>
<div>


<p>
.....
</p>
</div>
</div>
a標簽 實現鏈接
<a href="網址">點擊的內容</a>

2017.10.9筆記