-
Notifications
You must be signed in to change notification settings - Fork 0
/
rule.html
executable file
·50 lines (50 loc) · 1.77 KB
/
rule.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
<!DOCTYPE HTML>
<html>
<head>
<title>Rulebook</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<link rel="stylesheet" href="assets/css/main.css">
<noscript><link rel="stylesheet" href="assets/css/noscript.css"></noscript>
</head>
<body class="is-preload">
<!-- Wrapper -->
<div id="wrapper">
<!-- Main -->
<section id="main">
<header>
<span class="avatar"><img src="images/Mrblack.png" alt=""></span>
<h1>遊戲規則</h1>
<p>Rulebook</p>
</header>
<hr>
<h2>遊戲規則</h2>
<p>每題四個選項</p>
<p>一場遊戲五題</p>
<p>每題各一萬分</p>
<p>依答題速度進行分數加權</p>
<p>每贏一場積分加一分</p>
<p>積分高於一即可領獎</p>
<hr>
<ul class="actions special">
<li><a href="index.html" class="button">Back</a></li><!--ANS 1-->
</ul>
</section>
<!-- Footer -->
<footer id="footer">
<ul class="copyright">
<li>© Design: <a href="http://html5up.net">html5up</a></li>
<li>© Game: <a href="http://hackersir.org">FCU Hackersir</a></li>
</ul>
</footer>
</div>
<!-- Scripts -->
<script>
<!-- 動畫 -->
window.addEventListener("load", () => {
document.body.className = document.body.className.replace(/\bis-preload\b/, "");
});
document.body.className += (navigator.userAgent.match(/(MSIE|rv:11\.0)/) ? " is-ie" : "");
</script>
</body>
</html>