-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSandbox.html
62 lines (55 loc) · 1.96 KB
/
Sandbox.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="zh-tw">
<head>
<!--Page Title. This file name is Sandbox.html-->
<title>Sandbox Test page</title>
<!--META DATA-->
<meta http-equiv="content-type"content="text/html; charset=UTF-8">
<meta http-equiv="refresh" content="10">
<!--本專案使用GNU GENERAL PUBLIC LICENSE Version 3為授權條款,詳情請訪問此目錄的LICENSE.txt-->
<!-- Free software license. 自由軟體授權宣告。 -->
<!-- Powered By Toppy368. -->
<!-- HTML5,CSS And JavaScript Framework for Bootstrap. -->
<!-- This project is licensed under GNU GPLv3,You can get a copy of the license at https://toppy368.github.io/BCSM/LICENSE.txt. -->
</head>
<body>
<h1>Hello, world!</h1><p />
<h2>Sandbox.html:TEST PAGE</h2><p />
<font color="red"><b>注意:</b>請勿刪除水平線以上的內容 !</font><p />
<hr />
<!-- 注意:請在本行底下進行測試,請不要刪除這行註解以上的內容 !-->
<!--測試佈景的blockquote 導入CSS篇-->
<style>
blockquote {
background: #eeeee6 none repeat scroll -8px 0;
border: 1px solid #000000;
margin:0px auto;
padding-top: 25px;
padding-right: 0px;
padding-bottom: 5px;
padding-left: 0px;
}
/* 自訂 blockquote 樣式,名稱為 Title-Box */
.Title-Box {
background: #eeeeee none repeat scroll -8px 0;
border: 1px solid #000000;
margin:0px auto;
padding-top: 0px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
font-style: normal;
font-weight: bold;
text-align: center;
color: #000080;
}
</style>
<!-- 標題測試,與內文區分,標題有不同的HTML設定 -->
<blockquote><h2 style="text-align: center;"><span style="color: #000080;"><strong>標題</strong></span></h2></blockquote>
<p></p>
<!-- 內文 -->
<blockquote>內文</blockquote><p />
<!--自訂樣式(Title-Box)後的blockquot標題欄-->
<blockquote class="Title-Box"><h2>內文</h2></blockquote><p />
</body>
</html>