-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
145 lines (124 loc) · 4.64 KB
/
about.html
File metadata and controls
145 lines (124 loc) · 4.64 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!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>About Computer Force</h1>
<div class="text_box">
<p>
Computer Force is a brand-new start-up company designed to provide first- class service to its
customers. Based in Parramatta in Sydney, Computer Force provides top class computing products at
bargain prices, for sale throughout Australia.
</p>
</div>
<div class="about-grid">
<div class="aboutus">
<h2>
Our goals are:
</h2>
<ul class="text_box">
<li>
To become Australia’s most well-known and respected hardware and software provider
</li>
<li>
To create a service-based organisation whose goal is to exceed customer's expectations
</li>
<li>
To provide a smooth, efficient, and transparent sales process
</li>
</ul>
<h2>
You can contact us using the following methods:
</h2>
<ul class="text_box" style="list-style: none;">
<li>
Address: 100 Main Road, Parramatta, NSW 20150
</li>
<li>
Email: info@computerforce.com.au
</li>
<li>
Phone: 02 4444 5555
</li>
</ul>
</div>
<a href="news.html" class="linkcard">
<p class="linkhead">
News
</p>
<div class="linkcontent">
<p>
Upcoming Events
</p>
<p>
IT News
</p>
<p>
Blog
</p>
</div>
</a>
<a href="company_information.html" class="linkcard">
<p class="linkhead">
Company Information
</p>
<div class="linkcontent">
<p>
Company History
</p>
<p>
Company Awards
</p>
<p>
Board of Directors
</p>
</div>
</a>
<a href="site_map.html" class="linkcard">
<p class="linkhead">
Site Map
</p>
<div class="linkcontent">
<p>
The list of pages of our website.
</p>
</div>
</a>
</div>
</div>
<div id="aside"></div>
<div id="footer"></div>
</div>
</body>
</html>