<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>My test page</title>
</head>
<body>
<p>This is my page</p>
</body>
</html>
在 HTML 中加入 CSS 和 JavaScript 的寫法
<link rel="stylesheet" href="my-css-file.css">
<script src="my-js-file.js"></script>
<link rel="shortcut icon" href="" type="image/x-icon">
大部分瀏覽器都有支援 .gif 跟 .png 檔,
但使用 .ico 的話從 ie6 開始都能使用
<!-- third-generation iPad with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="">
<!-- iPhone with high-resolution Retina display: -->
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="">
<!-- first- and second-generation iPad: -->
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="">
<!-- non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
<link rel="apple-touch-icon-precomposed" href="">
body{
font-family:Arial, PingFang, sans-serif;
}
順便推薦一下字體
所以,學那麼多要幹嘛?
每個 HTML 元素都可以使用 id 屬性。
它的作用是在頁面的所有元素中,能獨立辨識某元素。
必須以字母或底線做開頭
同一個頁面上的兩個元素不能有相同的 id 屬性值
id 屬性是全域屬性(global attribute)
每個 HTML 元素都可以使用 class 屬性。
有時候你想做的並非獨立識別文件中的單一元素,而是將幾個元素從其他元素中獨立出來。
在任何元素上的 class 屬性都可以共用相同的值。
class 名稱及 id 名稱都是對大小寫敏感的。舉例來說 .classone 及 .ClassOne 是代表兩個不同的 class。
對於 CSS 而言,id 和 class 都是選擇器,唯一不同的地方在於權重不同。
<form action="/url-where-you-want-to-submit-form-data">
<input>
</form>
表單可以加入文字、單選、複選框、提交按鈕等,還包含了 menus、textarea、fieldset、legend 和 label 等元素。
<form>
<div>
<p>性別</p>
<label>
男性:<input type="radio" name="Sex" value="male">
</label>
<label>
<input type="radio" name="Sex" value="female"> 女性
</label>
</div>
</form>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin urna odio, aliquam vulputate faucibus id, elementum lobortis felis. Mauris urna dolor, placerat ac sagittis quis.
<form>
<div>
<p>交通工具</p>
<label>
腳踏車:<input type="checkbox" name="Bike">
</label>
<label>
<input type="checkbox" name="Car">汽車
</label>
</div>
</form>
<select>
<option value="提交的內容">網頁上顯示的</option>
</select>
<select>
<option disabled selected value>請選取</option>
<option value="student">學生</option>
</select>
若是希望有預設說明在下拉式選單上,可以這樣寫
必填:<input required>
禁用:<input disabled>
不可編輯:<input readonly>
提示:<input placeholder="請輸入帳號">
密碼遮罩:<input type="password">
重設表單:<input type="reset" value="Reset">
標題: id="title" 大小為 H1
簡短說明表單:id="description" 大小為 P
form 的 id="survey-form"
輸入姓名欄位 id="name"
輸入電子郵件欄位 id="email"(如果輸入的電子郵件格式不正確,則會看到 HTML5 驗證錯誤)
輸入年齡欄位 id="number"(如果在數字輸入中輸入非數字,則會看到 HTML5 驗證錯誤)
下拉式選單 id="dropdown"
<div class="switch">
<input class="s-checkbox" id="ID1" type="checkbox" name="switch-checkbox">
<label class="s-label" for="ID1">
<span class="s-txt" turnOn="開" turnOff="關"></span>
<span class="s-Round-btn"></span>
</label>
</div>
.switch { /*==設定開關鈕的長寬==*/
position: relative;
width: 65px;
height: 30px;
line-height: 30px;
}
.s-checkbox {
position: absolute;
display: none;
}
.s-label {
display: block;
overflow: hidden;
cursor: pointer;
border-radius: 20px;
}
.s-txt {
display: block;
width: 200%;
margin-left: -100%;
transition: margin 0.3s ease-in 0s;
}
.s-txt::before,
.s-txt::after {
display: block;
float: right;
width: 50%;
font-size: 13px;
color: #fff;
font-weight: bold;
box-sizing: border-box;
}
/*==開關鈕底色(開啟時)==*/
.switch-txt::after {
content: attr(turnOn);
padding-left: 10px;
background: #1ba0ef;
color: #fff;
}
/*開關鈕底色(關閉時)*/
.switch-txt::before {
content: attr(turnOff);
padding-right: 10px;
background: #eee;
color: #ccc;
text-align: right;
}
/*==開關鈕的顏色與大小==*/
.s-Round-btn {
position: absolute;
display: block;
width: 26px;
height: 26px;
margin: 2px;
background: #fff;
top: 0;
bottom: 0;
right: 35px;
border-radius: 13px;
transition: all 0.3s ease-in 0s;
}
.s-checkbox:checked + .s-label .s-txt {
margin-left: 0;
}
.s-checkbox:checked + .s-label .s-Round-btn{
right: 0;
<input id="" type="checkbox" name="s-checkbox" checked>
And padding ouo
/* 所有 */
margin: 1em;
margin: -3px;
/* 上下 | 左右 */
margin: 5% auto;
/* 上 | 左右 | 下 */
margin: 1em auto 2em;
/* 上 | 右 | 下 | 左 */
margin: 2px 1em 0 auto;
margin 屬性用來定義一個區域(例如 DIV 或 span)的外邊界距離,俗稱外距。margin 可以讓你一次設定四個邊的外距,也可以分別設定每個邊不同的外距,也可以設定負値。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>個人網站</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
</body>
</html>
lab 個人網站排版 navbar / 漢堡
content us
參考:https://slides.com/sshu/htmlcss#/1/2
終極目標:https://www.tplh.net/
余小魚 (2018). HTML的id class介紹 /CSS 的 class 和 ID 兩者有何差異?. Retrieved from https://reurl.cc/R6eo4Z