forked from paulphilip/pythoncode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
150 lines (147 loc) · 4.75 KB
/
index.html
File metadata and controls
150 lines (147 loc) · 4.75 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
<!DOCTYPE html>
<html>
<head>
<title>Jenkins Master Class</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
color: #333;
line-height: 1.6;
}
header {
background: linear-gradient(135deg, #13547a 0%, #80d0c7 100%);
color: white;
text-align: center;
padding: 2em 0;
position: relative;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.logo {
width: 80px;
height: 80px;
margin-bottom: 1em;
}
nav {
background-color: rgba(255, 255, 255, 0.1);
padding: 1em 0;
margin-top: 1em;
}
nav ul {
padding: 0;
list-style-type: none;
margin: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
font-weight: 500;
transition: color 0.3s;
}
nav ul li a:hover {
color: #80d0c7;
}
.hero {
text-align: center;
padding: 3em 1em;
background-color: white;
}
.features {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2em;
padding: 2em 5%;
}
.feature-card {
background: white;
padding: 2em;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
transition: transform 0.3s;
}
.feature-card:hover {
transform: translateY(-5px);
}
.feature-icon {
width: 300px;
height: 300px;
object-fit: cover;
border-radius: 8px;
margin-bottom: 1em;
}
footer {
text-align: center;
padding: 2em 0;
background-color: #13547a;
color: white;
margin-top: 2em;
}
.cta-button {
display: inline-block;
padding: 12px 24px;
background-color: #13547a;
color: white;
text-decoration: none;
border-radius: 25px;
transition: background-color 0.3s;
margin-top: 1em;
}
.cta-button:hover {
background-color: #80d0c7;
}
</style>
</head>
<body>
<header>
<img src="https://logos-world.net/wp-content/uploads/2023/12/Jenkins-Emblem.png" alt="Jenkins Logo" class="logo">
<h1>Jenkins Master Class</h1>
<p>Master Continuous Integration and Deployment</p>
<nav>
<ul>
<li><a href="#features">Features</a></li>
<li><a href="#tutorials">Tutorials</a></li>
<li><a href="#resources">Resources</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<div class="hero">
<h2>Transform Your DevOps Journey</h2>
<p>Learn how to automate your development pipeline and deploy with confidence</p>
<a href="#get-started" class="cta-button">Get Started Today</a>
</div>
<div class="features">
<div class="feature-card">
<img src="./images/i2.png" alt="CI/CD Pipeline" class="feature-icon">
<h3>CI/CD Pipelines</h3>
<p>Master the art of building efficient pipelines that automate your testing and deployment processes. Learn best practices for continuous integration and delivery.</p>
</div>
<div class="feature-card">
<img src="./images/i1.png" alt="Plugin Ecosystem" class="feature-icon">
<h3>Plugin Ecosystem</h3>
<p>Explore Jenkins' vast plugin ecosystem. Discover how to extend Jenkins' functionality with popular plugins for source control, testing, and deployment.</p>
</div>
<div class="feature-card">
<img src="./images/i3.jpeg" alt="Security" class="feature-icon">
<h3>Security & Best Practices</h3>
<p>Learn how to secure your Jenkins installation, manage credentials safely, and implement security best practices in your CI/CD pipeline.</p>
</div>
</div>
<footer>
<p>© 2025 Jenkins Master Class - Empowering DevOps Excellence</p>
<nav>
<ul>
<li><a href="#privacy">Privacy Policy</a></li>
<li><a href="#terms">Terms of Service</a></li>
<li><a href="#contact">Contact Us</a></li>
</ul>
</nav>
</footer>
</body>
</html>