-
Notifications
You must be signed in to change notification settings - Fork 0
/
welfare.html
69 lines (68 loc) · 1.86 KB
/
welfare.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
63
64
65
66
67
68
69
<!doctype html>
<html>
<head>
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<meta charset="UTF-8">
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#head").load("header.html");
});
</script>
</head>
<body>
<div id="wrapper">
<!-- Header begins -->
<div id="head"></div>
<!-- Header ends -->
<!-- Main body begins -->
<main id="main">
<section class="content">
<div class="container">
<header>
<section style="float:left">
<h1>會員福利</h1>
<p> 我們會以基本會員的利益為大前提,竭盡全力爭取最大的福利,以提供更多優惠給基本會員。
另外,我們亦會收集會員對工程學院及本會的意見,向工程學院提出同學的訴求。
</p>
</section>
<section style="float:left;"></section>
</header>
<div class="service">
<h2>租借服務</h2>
<p>本會提供以下項目可供會員借用:
<ul>
<li>充電插頭及micro-usb/iPhone線</li>
<li>雨傘</li>
<li>釘書機</li>
</ul>
</p>
</div>
<div class="service">
<h2>日常服務</h2>
<p>本會在會室開放期間提供以下服務給各會員享用:
<ul>
<li>代售列印credit</li>
<li>小賣服務</li>
</ul>
</p>
</div>
<div class="service">
<h2>福利品</h2>
<p>本會現在亦提供以下福利品給會員購買:
<ul>
<li>院會會紙</li>
<li>院會會樓</li>
<li>院會會衫</li>
</ul>
</p>
</div>
</div>
</section>
</main>
<!-- Main body ends -->
</div>
</body>
</html>