-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtestabout.html
More file actions
282 lines (270 loc) · 11.4 KB
/
testabout.html
File metadata and controls
282 lines (270 loc) · 11.4 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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" integrity="sha512-Evv84Mr4kqVGRNSgIGL/F/aIDqQb7xQ2vcrdIwxfjThSH8CSR7PBEakCr51Ck+w+/U6swU2Im1vVX0SVk9ABhg==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<style>
:root {
--primary-color: #198754;
--secondary-color: #3cba8f;
--background-color: #f8f9fa;
--text-color: #343a40;
}
body {
font-family: 'Inter', sans-serif;
color: var(--text-color);
background-color: var(--background-color);
line-height: 1.6;
margin: 0;
padding: 0;
}
/* Navbar Styles */
.navbar {
background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
position: sticky;
top: 0;
z-index: 1000;
}
.navbar-brand {
color: white;
font-size: 1.8rem;
font-weight: bold;
letter-spacing: 1px;
}
.nav-link {
color: white !important;
margin: 0 0.5rem;
position: relative;
}
.nav-link::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: var(--secondary-color);
transition: width 0.3s;
}
.nav-link:hover::after {
width: 100%;
}
/* Main Content Container */
.main-container {
padding: 4rem 2rem;
background-color: var(--background-color);
text-align: center;
background-image: url('https://via.placeholder.com/1920x1080');
background-size: cover;
background-position: center;
}
/* About Section */
.about-section {
max-width: 800px;
margin: 0 auto;
padding: 3rem;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 15px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
text-align: center;
}
.about-section h1 {
font-size: 2.5rem;
margin-bottom: 1.5rem;
color: var(--primary-color);
}
.about-section p {
font-size: 1.2rem;
line-height: 1.6;
color: var(--text-color);
}
.about-section img {
max-width: 100%;
height: auto;
border-radius: 10px;
margin: 2rem 0;
}
/* FAQ Section */
.faq-section {
max-width: 800px;
margin: 4rem auto;
padding: 2rem;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 15px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
text-align: center;
}
.faq-section h2 {
font-size: 2.2rem;
color: var(--primary-color);
margin-bottom: 1.5rem;
}
.accordion-button {
font-size: 1.2rem;
color: var(--text-color);
}
.accordion-body {
font-size: 1.1rem;
color: var(--text-color);
}
/* Footer Section */
.footer {
background-color: var(--primary-color);
color: white;
text-align: center;
padding: 1rem 0;
margin-top: 2rem;
}
/* Responsive Design */
@media (max-width: 768px) {
.main-container {
padding: 2rem 1rem;
}
.about-section {
padding: 1.5rem;
}
.about-section h1 {
font-size: 2rem;
}
.about-section p {
font-size: 1rem;
}
.faq-section {
padding: 1.5rem;
}
.faq-section h2 {
font-size: 1.8rem;
}
.accordion-button {
font-size: 1rem;
}
.accordion-body {
font-size: 0.9rem;
}
}
@media (max-width: 480px) {
.main-container {
padding: 1.5rem 0.5rem;
}
.about-section {
padding: 1rem;
}
.about-section h1 {
font-size: 1.8rem;
}
.about-section p {
font-size: 0.9rem;
}
.faq-section {
padding: 1rem;
}
.faq-section h2 {
font-size: 1.6rem;
}
.accordion-button {
font-size: 0.9rem;
}
.accordion-body {
font-size: 0.8rem;
}
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-lg">
<a class="navbar-brand" href="home.html">Operating Systems Guide</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto">
<li class="nav-item">
<a class="nav-link" href="home.html">Home <i class="fa-solid fa-house"></i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="oscomparison.html">OS comparison <i class="fa-solid fa-cube"></i></a>
</li>
<li class="nav-item">
<a class="nav-link" href="recommendation.html">Our recommendations <i class="fa-solid fa-check"></i></a>
</li>
<li class="nav-item">
<a class="nav-link active" href="testabout.html">About <i class="fa-solid fa-circle-info"></i></a>
</li>
<div class="dropdown">
<a class="btn btn-success dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown" aria-expanded="false">
More tools
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="https://github.com/dagoatzmcclusky/Linux-introduction-tutorial">Source code</a></li>
</ul>
</div>
</ul>
</div>
</div>
</nav>
<!-- Main Content Container -->
<div class="main-container">
<div class="about-section">
<h1>About Us</h1>
<img src="https://www.cio.com/wp-content/uploads/2023/05/programming_coding_elements_lines_of_code_development_developers_teamwork_by_dean_mitchell_gettyimages-1055056840_2400x1600-100795791-orig-1.jpg?quality=50&strip=all" alt="Team Image">
<p>
"We are a team of open-source enthusiasts who would love to bring to the world the power of open-source software by delivering high-quality, versatile open-source applications which can be applied in any job sector. We believe that inclusion is key: everyone has the ability to build and develop their own software, as well as distribute it globally for everyone to use. We strongly support one single fact: software should be built by the people, for the people."
</p>
</div>
</div>
<!-- FAQ Section -->
<div class="faq-section">
<h2>Frequently Asked Questions (FAQ)</h2>
<div class="accordion" id="accordionExample">
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button" type="button" data-bs-toggle="collapse" data-bs-target="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Do we believe in proprietary software?
</button>
</h2>
<div id="collapseOne" class="accordion-collapse collapse show" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>No, we believe that open-source software is a fundamental human right.</strong> Since plenty of proprietary software can violate the very basic human rights, including freedom, due to vendor lock-in and slower innovation, it is up to our duty to open our codebase to the rest of the world, one line of code at a time.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Do you think that open-source software has its own flaws?
</button>
</h2>
<div id="collapseTwo" class="accordion-collapse collapse" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>They still do have some flaws, but fewer than those in proprietary software.</strong> It is thanks to the open-source codebase that allows everyone to patch code, fix bugs, and add new features way faster than any proprietary software company can do.
</div>
</div>
</div>
<div class="accordion-item">
<h2 class="accordion-header">
<button class="accordion-button collapsed" type="button" data-bs-toggle="collapse" data-bs-target="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Don't open-source software have their own marketing stunts like their proprietary software counterparts?
</button>
</h2>
<div id="collapseThree" class="accordion-collapse collapse" data-bs-parent="#accordionExample">
<div class="accordion-body">
<strong>Many open-source software do have flexible PR tactics.</strong> For example, <strong>Firefox</strong> is being strongly advertised by its parent company Mozilla, and both Red Hat and Canonical do frequently advertise their own Linux distros (RHEL and Ubuntu) to the rest of the world.
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<p><i class="fa-solid fa-copyright"></i> Copyright, McClusky Minh, 2025.</p>
</footer>
<!-- Scripts -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</body>
</html>