-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenefit.html
More file actions
70 lines (58 loc) · 2.32 KB
/
benefit.html
File metadata and controls
70 lines (58 loc) · 2.32 KB
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
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Computer Force</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("#header").load("header.html");
$("#menu").load("menu.html");
$("#aside").load("aside.html");
$("#footer").load("footer.html");
});
</script>
<script>
function myFunction() {
var x = document.getElementById("top_nav_bar");
if (x.className === "nav_bar") {
x.className += " responsive";
} else {
x.className = "nav_bar";
}
}
</script>
<script src="https://kit.fontawesome.com/c698919862.js" crossorigin="anonymous"></script>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="css-grid">
<div id="header"></div>
<div id="menu"></div>
<div id="main">
<h1>Member Benefits</h1>
<p>Members in all locations gain access to partner deals, special offers and discounts</p>
<h2>Products and services that suit you</h2>
<p>
One of the many advantages of being a Computer Force Australia member is accessing our privilege
program.
</p>
<p>
Since its inception more than 20 years ago, our primary goal for the Member Benefits program has been to
provide a value-based model, offering products and services to members that are relevant to their varied
interests.
</p>
<p>
We partner with organisations who have a shared desire to support and make a difference to our members
and the accounting and business finance profession.
</p>
</div>
<div id="aside"></div>
<div id="footer"></div>
</div>
</body>
</html>