This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> <!-- html5 --> | |
| <html lang="zh-Hant-TW"> <!-- 台灣繁體語系 --> | |
| <!-- head標頭資訊的開始,用來作為網頁的描述 | |
| ================================================== --> | |
| <head> | |
| <meta charset="utf-8"> <!-- utf-8編碼,中文不會產生亂碼 --> | |
| <title>一半人生/阿信</title> <!-- 網頁標題 --> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- 指定螢幕寬度為裝置寬度,畫面載入初始縮放比例100%--> | |
| <meta name="description" content="一半人生歌詞"> <!-- 提供搜尋引擎關於網頁頁面內的重要資訊--> | |
| <link href="style.css" rel="stylesheet"> <!-- 連結到style.css設定視覺規劃--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <h1>一半人生</h1> | |
| <h3>電影 飛馳人生 主題曲</h3> | |
| <h2>作詞:韓寒/作曲:阿信/編曲:賴暐哲</h2> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* 區塊設定 */ | |
| header{ | |
| background:#258CA6; | |
| padding-top: 10px; | |
| } | |
| /* 網站標題 */ | |
| h1 { | |
| font-size: 2em; | |
| color: #E4EEF7; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html lang="zh-Hant-TW"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>網頁標題/出現於瀏覽器頁籤</title> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <meta name="description" content="提供搜尋引擎關於網頁頁面內的重要資訊"> | |
| <link rel="stylesheet" href="style.css"> | |
| </head> | |
| <body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> <!-- html5 --> | |
| <html lang="zh-Hant-TW"> <!-- 台灣繁體語系 --> | |
| <!-- head標頭資訊的開始,用來作為網頁的描述 | |
| ================================================== --> | |
| <head> | |
| <meta charset="utf-8"> <!-- utf-8編碼,中文不會產生亂碼 --> | |
| <title>一半人生/阿信</title> <!-- 網頁標題 --> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- 指定螢幕寬度為裝置寬度,畫面載入初始縮放比例100%--> | |
| <meta name="description" content="一半人生歌詞"> <!-- 提供搜尋引擎關於網頁頁面內的重要資訊--> | |
| <link href="style.css" rel="stylesheet"> <!-- 連結到style.css設定視覺規劃--> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- main內文設定開始--> | |
| <main> | |
| 在某個清晨,回望我一生<br> <!-- br換行--> | |
| 活得雖認真,卻微小如塵<br> | |
| <p></p> <!-- p段落--> | |
| 想要唱首歌,去唱哭別人<br> | |
| 最後卻是我,滿臉淚痕<br> | |
| <p></p> | |
| 早告別青春,活成了別人<br> | |
| 經歷的時代,已如此陌生<br> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @charset "UTF-8"; /* UTF-8編碼,使中文不會產生亂碼*/ | |
| @import url(https://fonts.googleapis.com/earlyaccess/notosanstc.css); /* google雲端字體 思源黑體*/ | |
| /* CSS Document */ | |
| /* body */ | |
| body{ | |
| font-family:"Noto Sans TC", sans-serif; /* google雲端字體 思源黑體*/ | |
| background: #fff; /* 背景色*/ | |
| margin: 0; /* 外部距離設為0*/ | |
| text-align: center; /*文字居中對齊*/ | |
| -webkit-text-size-adjust: 100%; /*文字大小會達到易讀的大小,但是不會修改佈局*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <header> | |
| <h1>一半人生</h1> | |
| <h3>電影 飛馳人生 主題曲</h3> | |
| <h2>作詞:韓寒/作曲:阿信/編曲:賴暐哲</h2> | |
| </header> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>一半人生</title> | |
| </head> | |
| <body> | |
| <header> | |
| <h1>一半人生</h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>一半人生</title> | |
| </head> | |
| <body> | |
| <header> | |
| <h1>一半人生</h1> |
OlderNewer