-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
145 lines (145 loc) · 4.82 KB
/
index.html
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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cyber Retaliator Solutions Training</title>
<link rel="stylesheet" href="styles/main.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;700&display=swap');
body {
font-family: 'IBM Plex Sans', Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 20px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.container {
width: 80%;
max-width: 1200px;
background-color: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
text-align: left;
}
h1, h2, h3 {
color: #0f62fe;
}
.section {
margin-bottom: 40px;
}
.content {
margin-bottom: 20px;
}
.badge-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
gap: 20px;
}
.badge-item {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
overflow: hidden;
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.badge-item:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.badge-item img {
width: 100%;
height: 100px;
object-fit: cover;
}
.badge-item a {
display: block;
padding: 10px;
text-decoration: none;
color: #007acc;
font-weight: bold;
}
.badge-item a:hover {
background-color: #f4f4f4;
}
.footer {
text-align: center;
padding: 10px;
background-color: #333;
color: #fff;
margin-top: 20px;
width: 100%;
}
.sidebar-left, .sidebar-right {
width: 20%;
padding: 10px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.content {
width: 60%;
padding: 10px;
}
.sidebar-left ul, .sidebar-right ul {
list-style-type: none;
padding: 0;
}
.sidebar-left ul li, .sidebar-right ul li {
margin: 10px 0;
}
.sidebar-left ul li a, .sidebar-right ul li a {
text-decoration: none;
color: #0f62fe;
}
.sidebar-left ul li a:hover, .sidebar-right ul li a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="sidebar-left">
<h2>Navigation</h2>
<ul>
<li><a href="safer-payments.html">IBM Safer Payments</a></li>
<li><a href="lab-requirements-ficon.html">Lab Requirements</a></li>
<li><a href="integrations-roadmap.html">Integrations Roadmap</a></li>
</ul>
</div>
<div class="content">
<h1>Welcome to Cyber Retaliator Solutions Training</h1>
<p>Select a training module from the navigation menu to get started.</p>
</div>
<div class="sidebar-right">
<h2>Additional Resources</h2>
<div class="course-details">
<h3>IBM z/OS Bootcamp</h3>
<p><a class="badge-link" href="https://www.ibm.com/training/course/ibm-zos-bootcamp-ESZ0G">View Course</a></p>
</div>
<div class="course-details">
<h3>Fundamental System Skills in z/OS</h3>
<p><a class="badge-link" href="https://www.ibm.com/training/course/fundamental-system-skills-in-zos-ES10G">View Course</a></p>
</div>
<div class="course-details">
<h3>IBM System z HMC Operations</h3>
<p><a class="badge-link" href="https://www.ibm.com/training/course/ibm-system-z-hardware-management-console-hmc-operations-ES24G">View Course</a></p>
</div>
<div class="course-details">
<h3>HCD for z/OS</h3>
<p><a class="badge-link" href="https://www.ibm.com/training/course/hardware-configuration-and-definition-hcd-for-z-os-ES96G">View Course</a></p>
</div>
<div class="course-details">
<h3>Introduction to Storage</h3>
<p><a class="badge-link" href="https://www.ibm.com/training/course/introduction-to-storage-SS01G">View Course</a></p>
</div>
</div>
<footer>
<p>© 2024 Skunkworks. All rights reserved.</p>
</footer>
</div>
</body>
</html>