-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrecommendation.html
More file actions
260 lines (248 loc) · 9.05 KB
/
recommendation.html
File metadata and controls
260 lines (248 loc) · 9.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Recommendations</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css">
<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 Container */
.main-container {
padding: 6rem 2rem;
background-color: var(--background-color);
background-image: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)), url('https://via.placeholder.com/1920x1080');
background-size: cover;
min-height: 100vh;
text-align: 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;
color: var(--primary-color);
margin-bottom: 1.5rem;
}
.about-section p {
font-size: 1.2rem;
color: var(--text-color);
line-height: 1.6;
max-width: 600px;
margin: 0 auto 2rem;
}
.about-section img {
max-width: 100%;
height: auto;
border-radius: 10px;
margin: 2rem 0;
}
/* Call to Action Section */
.cta-section {
background-color: var(--primary-color);
color: white;
padding: 4rem 2rem 2rem;
margin-top: 2rem;
text-align: center;
}
.cta-button {
background-color: var(--secondary-color);
color: white;
padding: 1rem 2rem;
border-radius: 25px;
font-size: 1.1rem;
font-weight: bold;
transition: all 0.3s ease;
display: inline-block;
margin: 1rem 0;
}
.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 5px 10px rgba(0,0,0,0.2);
}
/* 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: 4rem 1rem;
}
.about-section {
padding: 1.5rem;
}
.about-section h1 {
font-size: 2rem;
}
.about-section p {
font-size: 1rem;
}
.cta-section {
padding: 2rem 1rem;
}
.footer {
padding: 0.5rem 0;
}
}
@media (max-width: 480px) {
.main-container {
padding: 2rem 0.5rem;
}
.about-section {
padding: 1rem;
}
.about-section h1 {
font-size: 1.8rem;
}
.about-section p {
font-size: 0.9rem;
}
.cta-section {
padding: 1.5rem;
}
}
</style>
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container-lg">
<a class="navbar-brand" href="#">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 active" href="recommendation.html">Our recommendations <i class="fa-solid fa-check"></i></a>
</li>
<li class="nav-item">
<a class="nav-link" 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">
More tools</i>
</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 -->
<div class="main-container">
<div class="about-section">
<div class="text-center">
<h1>After all the recommendations, all we want you to choose is...</h1>
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcT5uAc9_z3ClFDZHruWV5cB9d70VkPhzd5emw&s" alt="Linux Logo">
<h2 class="text-success">Linux-based distributions!</h2>
</div>
<p>
Because Linux is the epitome of freedom and democracy. You can tweak your system and customize it to your will, whenever you want; without fear of corporate or vendor lock-in.
</p>
<div class="text-center">
<button class="cta-button" onclick="window.scrollTo(0, document.body.scrollHeight);">
Why Linux?
</button>
</div>
</div>
<!-- Call to Action Section -->
<div class="cta-section">
<h2 class="text-center mb-3">Why Linux?</h2>
<div class="container">
<div class="row">
<div class="col-lg-4 mb-4 text-center">
<i class="fas fa-unlock fa-3x text-success mb-3"></i>
<img src="https://cdn-icons-png.flaticon.com/512/5066/5066601.png">
<h4>True Freedom</h4>
<p>Open-source with no vendor lock-in</p>
</div>
<div class="col-lg-4 mb-4 text-center">
<i class="fas fa-tools fa-3x text-success mb-3"></i>
<img src="https://cdn-icons-png.flaticon.com/512/9449/9449590.png">
<h4>Customizable</h4>
<p>Tweak and tailor your system to perfection</p>
</div>
<div class="col-lg-4 mb-4 text-center">
<i class="fas fa-terminal fa-3x text-success mb-3"></i>
<img src="https://cdn-icons-png.flaticon.com/512/6840/6840478.png">
<h4>Powerful</h4>
<p>Advanced tools for developers and enthusiasts</p>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="footer">
<p><i class="fa-solid fa-copyright"></i> Copyright, McClusky Minh, 2025.</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>