-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathonline-courses.php
More file actions
159 lines (141 loc) · 3.57 KB
/
Copy pathonline-courses.php
File metadata and controls
159 lines (141 loc) · 3.57 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
<!-- Online Learning Platforms: Cards View -->
<section class="ds-cards-wrap">
<div class="cards-grid">
<article class="card">
<h4 class="card-title">Alison <span class="card-badge">Free</span></h4>
<p class="card-desc">Free online courses in business, IT, and health.</p>
<a class="card-btn" href="https://alison.com" target="_blank" rel="noopener">Visit Site</a>
</article>
<article class="card">
<h4 class="card-title">Coursera</h4>
<p class="card-desc">University-backed courses & professional certificates.</p>
<a class="card-btn" href="https://www.coursera.org" target="_blank" rel="noopener">Visit Site</a>
</article>
<article class="card">
<h4 class="card-title">edX</h4>
<p class="card-desc">Courses from top universities like MIT & Harvard.</p>
<a class="card-btn" href="https://www.edx.org" target="_blank" rel="noopener">Visit Site</a>
</article>
<article class="card">
<h4 class="card-title">Udemy</h4>
<p class="card-desc">Practical, on-demand skills for professionals.</p>
<a class="card-btn" href="https://www.udemy.com" target="_blank" rel="noopener">Visit Site</a>
</article>
<article class="card">
<h4 class="card-title">LinkedIn Learning</h4>
<p class="card-desc">Short courses on workplace tools & leadership.</p>
<a class="card-btn" href="https://www.linkedin.com/learning" target="_blank" rel="noopener">Visit Site</a>
</article>
</div>
</section>
<style>
/* Common Wrapper */
.ds-cards-wrap {
background: #24101a;
padding: 36px 28px;
border-radius: 15px;
font-family: 'Poppins', sans-serif;
max-width: 1200px;
margin: 0 auto;
color: #fff;
}
.ds-cards-wrap h2 {
font-size: 26px;
margin: 0 0 20px 0;
font-weight: 700;
text-align: center;
color: #fff;
}
/* Grids */
.cards-grid,
.cards-grid-4x2,
.cards-grid-5x2 {
display: grid;
gap: 16px;
margin-bottom: 22px;
}
.cards-grid {
grid-template-columns: repeat(5, 1fr);
}
.cards-grid-4x2 {
grid-template-columns: repeat(4, 1fr);
}
.cards-grid-5x2 {
grid-template-columns: repeat(5, 1fr);
}
/* Cards */
.card {
background: #fff;
color: #24101a;
border-radius: 14px;
border: 2px solid #eee;
padding: 16px;
text-align: center;
display: flex;
flex-direction: column;
justify-content: space-between;
min-height: 220px;
transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
border-color: #f6b900;
}
/* Titles & Descriptions */
.card-title {
font-size: 18px;
font-weight: 700;
margin: 6px 0 10px 0;
color: #24101a;
}
.card-desc {
font-size: 15px;
line-height: 1.55;
margin: 0 0 12px 0;
color: #3a2a31;
flex-grow: 1;
}
/* Buttons */
.card-btn {
display: inline-block;
background: #f6b900;
color: #411c30;
font-weight: 600;
font-size: 14px;
padding: 10px 14px;
border-radius: 10px;
text-decoration: none;
transition: background 0.2s ease, opacity 0.2s ease;
margin-top: auto;
}
.card-btn:hover {
background: #ffe590;
opacity: 0.95;
}
/* Responsive Breakpoints */
@media (max-width: 1024px) {
.cards-grid,
.cards-grid-4x2,
.cards-grid-5x2 {
grid-template-columns: repeat(2, 1fr);
}
}
@media (max-width: 600px) {
.cards-grid,
.cards-grid-4x2,
.cards-grid-5x2 {
grid-template-columns: 1fr; /* Single column on mobile */
}
.card {
min-height: unset;
padding: 14px;
text-align: left;
}
.card-desc {
font-size: 16px;
line-height: 1.6;
margin-bottom: 10px;
}
}
</style>