<!DOCTYPE html>
<html lang="en">
<head>
<!-- 文件資料元素 -->
</head>
<body>
<!-- 文件內容 -->
</body>
</html>
<head>
<!--網頁標題-->
<title>2016 中興大學 資工營</title>
<!--網頁簡短敘述,這是給瀏覽器跟搜尋引擎看的-->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="2016中興資工營 不法資徒">
<meta name="author" content="Sakamoto">
<!--外掛的其他樣式-->
<link rel="stylesheet" href="./css/loading.css">
<link rel="stylesheet" href="./css/main.css">
</head>
<h1>...</h1>
<h2>...</h2>
<h3>...</h3>
<h4>...</h4>
<h5>...</h5>
<h6>...</h6>
<p>...</p>
<div>
<h1>標題</h1>
<p>內文</p>
</div>
<img src="圖片連結" alt="若圖片連結失效會顯示的東西">
<a href="http://nchu_cse_camp.nchuit.cc/">不法資徒官網</a>
<ul>
<li>...</li>
<li>...</li>
<li>...</li>
</ul>
<ol>
<li>...</li>
<li>...</li>
<li>...</li>
</ol>
<table>
<tr>
<th>姓名</th>
<th>Pusheen</th>
</tr>
<tr>
<td>物種</td>
<td>花貓</td>
</tr>
<tr>
<td>性別</td>
<td>母的</td>
</tr>
<tr>
<td>興趣</td>
<td>吃</td>
</tr>
</table>
姓名 | Pusheen |
---|---|
物種 | 花貓 |
性別 | 母的 |
興趣 | 吃 |
<h1 style='color: lightblue; font-size: 18px;'>Hello, World!</h1>
color: lightblue;
font-size: 14px;
font-family: '微軟正黑體';
font-weight: bolder;
text-align: center;
<h1 style='color: lightblue;'>Hi~</h1>
<h1 style='color: lightblue;'>I'm</h1>
<h1 style='color: lightblue; font-size: 20px;'>Sakamoto</h1>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- 文件資料元素 -->
<style>
<!-- CSS要寫在這裡呦 -->
</style>
</head>
<body>
<!-- 文件內容 -->
</body>
</html>
css-selector { attributes ... }
<h1>Hello, World!!</h1>
h1 { ... }
<h1 id='my-id'>Hello, World!!</h1>
#my-id { ... }
<h1 class='my_class'>Hello, World!!</h1>
.my_class { ... }