1. 程式人生 > >2018.10.06 學習筆記 // 前端HTML // HTML基本結構

2018.10.06 學習筆記 // 前端HTML // HTML基本結構

學了那麼久還是沒記住HTML的結構 = =

在Sublime上打上<html>標籤會自動補全下面的元素

首先有一個DOCTYPE元素來告訴瀏覽器HTML的版本。

然後網頁以<html>開始,以</html>結束。

接下來<head></head>之間是網頁不可見的內容,<body></body>之間是網頁可見的內容。

其中,<head></head>中,<title></title>中放的是網頁標題,“<meta> 標籤的屬性定義了與文件相關聯的名稱/值對”,在HTML5中,只需用<meta charset='UTF-8'>定義字符集,另外還有<link>定義了外部的js和CSS。

<!DOCTYPE html> <!-- 使用 HTML5 doctype,不區分大小寫 -->
<html lang="zh-cmn-Hans"> <!-- 更加標準的 lang 屬性寫法 http://zhi.hu/XyIa -->
<head>
    <meta charset='utf-8'> <!-- 宣告文件使用的字元編碼 -->
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <!-- 優先使用 IE 最新版本和 Chrome -->
    <meta name="description" content="不超過150個字元" /> <!-- 頁面描述 -->
    <meta name="keywords" content=""/> <!-- 頁面關鍵詞 -->
    <meta name="author" content="name, 
[email protected]
" /> <!-- 網頁作者 --> <meta name="robots" content="index,follow" /> <!-- 搜尋引擎抓取 --> <!-- 為移動裝置新增 viewport --> <meta name ="viewport" content ="initial-scale=1, maximum-scale=3, minimum-scale=1, user-scalable=no"> <!-- `width=device-width` 會導致 iPhone 5 新增到主屏後以 WebApp 全屏模式開啟頁面時出現黑邊 http://bigc.at/ios-webapp-viewport-meta.orz --> <!-- iOS 裝置 begin --> <meta name="apple-mobile-web-app-title" content="標題"> <!-- 新增到主屏後的標題(iOS 6 新增) --> <meta name="apple-mobile-web-app-capable" content="yes" /> <!-- 是否啟用 WebApp 全屏模式 --> <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> <!-- 設定狀態列的背景顏色,只有在 `"apple-mobile-web-app-capable" content="yes"` 時生效 --> <meta name="format-detection" content="telephone=no" /> <!-- 禁止數字識自動別為電話號碼 --> <meta name="apple-itunes-app" content="app-id=myAppStoreID, affiliate-data=myAffiliateData, app-argument=myURL"> <!-- 新增智慧 App 廣告條 Smart App Banner(iOS 6+ Safari) --> <!-- iOS 圖示 begin --> <link rel="apple-touch-icon-precomposed" href="/apple-touch-icon-57x57-precomposed.png" /> <!-- iPhone 和 iTouch,預設 57x57 畫素,必須有 --> <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-114x114-precomposed.png" /> <!-- Retina iPhone 和 Retina iTouch,114x114 畫素,可以沒有,但推薦有 --> <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144x144-precomposed.png" /> <!-- Retina iPad,144x144 畫素,可以沒有,但推薦有 --> <!-- iOS 圖示 end --> <!-- iOS 啟動畫面 begin --> <link rel="apple-touch-startup-image" sizes="768x1004" href="/splash-screen-768x1004.png" /> <!-- iPad 豎屏 768 x 1004(標準解析度) --> <link rel="apple-touch-startup-image" sizes="1536x2008" href="/splash-screen-1536x2008.png" /> <!-- iPad 豎屏 1536x2008(Retina) --> <link rel="apple-touch-startup-image" sizes="1024x748" href="/Default-Portrait-1024x748.png" /> <!-- iPad 橫屏 1024x748(標準解析度) --> <link rel="apple-touch-startup-image" sizes="2048x1496" href="/splash-screen-2048x1496.png" /> <!-- iPad 橫屏 2048x1496(Retina) --> <link rel="apple-touch-startup-image" href="/splash-screen-320x480.png" /> <!-- iPhone/iPod Touch 豎屏 320x480 (標準解析度) --> <link rel="apple-touch-startup-image" sizes="640x960" href="/splash-screen-640x960.png" /> <!-- iPhone/iPod Touch 豎屏 640x960 (Retina) --> <link rel="apple-touch-startup-image" sizes="640x1136" href="/splash-screen-640x1136.png" /> <!-- iPhone 5/iPod Touch 5 豎屏 640x1136 (Retina) --> <!-- iOS 啟動畫面 end --> <!-- iOS 裝置 end --> <meta name="msapplication-TileColor" content="#000"/> <!-- Windows 8 磁貼顏色 --> <meta name="msapplication-TileImage" content="icon.png"/> <!-- Windows 8 磁貼圖示 --> <link rel="alternate" type="application/rss+xml" title="RSS" href="/rss.xml" /> <!-- 新增 RSS 訂閱 --> <link rel="shortcut icon" type="image/ico" href="/favicon.ico" /> <!-- 新增 favicon icon --> <title>標題</title> </head>