Skip to content

Commit bd482e8

Browse files
Update index.html
1 parent 89d0ea2 commit bd482e8

1 file changed

Lines changed: 101 additions & 34 deletions

File tree

index.html

Lines changed: 101 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,150 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>Beautiful Webpage</title>
4+
<title>Jenkins Master Class</title>
55
<style>
66
body {
7-
font-family: Arial, sans-serif;
7+
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
88
margin: 0;
99
padding: 0;
10-
background-color: #f0f0f0;
10+
background-color: #f5f5f5;
1111
color: #333;
12+
line-height: 1.6;
1213
}
13-
1414
header {
15-
background-color: #3674B5;
15+
background: linear-gradient(135deg, #13547a 0%, #80d0c7 100%);
1616
color: white;
1717
text-align: center;
18+
padding: 2em 0;
19+
position: relative;
20+
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
21+
}
22+
.logo {
23+
width: 80px;
24+
height: 80px;
25+
margin-bottom: 1em;
26+
}
27+
nav {
28+
background-color: rgba(255, 255, 255, 0.1);
1829
padding: 1em 0;
30+
margin-top: 1em;
1931
}
20-
2132
nav ul {
2233
padding: 0;
2334
list-style-type: none;
35+
margin: 0;
2436
}
25-
2637
nav ul li {
2738
display: inline;
28-
margin-right: 20px;
39+
margin: 0 15px;
2940
}
30-
3141
nav ul li a {
3242
color: white;
3343
text-decoration: none;
44+
font-weight: 500;
45+
transition: color 0.3s;
3446
}
35-
36-
section {
37-
margin: 2em 5%;
38-
padding: 1em;
47+
nav ul li a:hover {
48+
color: #80d0c7;
49+
}
50+
.hero {
51+
text-align: center;
52+
padding: 3em 1em;
3953
background-color: white;
40-
border-radius: 8px;
54+
}
55+
.features {
56+
display: grid;
57+
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
58+
gap: 2em;
59+
padding: 2em 5%;
60+
}
61+
.feature-card {
62+
background: white;
63+
padding: 2em;
64+
border-radius: 10px;
4165
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
66+
transition: transform 0.3s;
67+
}
68+
.feature-card:hover {
69+
transform: translateY(-5px);
70+
}
71+
.feature-icon {
72+
width: 100%;
73+
height: 200px;
74+
object-fit: cover;
75+
border-radius: 8px;
76+
margin-bottom: 1em;
4277
}
43-
4478
footer {
4579
text-align: center;
46-
padding: 1em 0;
47-
background-color: #333;
80+
padding: 2em 0;
81+
background-color: #13547a;
4882
color: white;
83+
margin-top: 2em;
84+
}
85+
.cta-button {
86+
display: inline-block;
87+
padding: 12px 24px;
88+
background-color: #13547a;
89+
color: white;
90+
text-decoration: none;
91+
border-radius: 25px;
92+
transition: background-color 0.3s;
93+
margin-top: 1em;
94+
}
95+
.cta-button:hover {
96+
background-color: #80d0c7;
4997
}
5098
</style>
5199
</head>
52100
<body>
53101
<header>
54-
<h1>Welcome to Jenkins Tutorial</h1>
102+
<img src="/api/placeholder/80/80" alt="Jenkins Logo" class="logo">
103+
<h1>Jenkins Master Class</h1>
104+
<p>Master Continuous Integration and Deployment</p>
55105
<nav>
56106
<ul>
57-
<li><a href="#home">Home</a></li>
58-
<li><a href="#about">About</a></li>
107+
<li><a href="#features">Features</a></li>
108+
<li><a href="#tutorials">Tutorials</a></li>
109+
<li><a href="#resources">Resources</a></li>
59110
<li><a href="#contact">Contact</a></li>
60111
</ul>
61112
</nav>
62113
</header>
63114

64-
<section id="home">
65-
<h2>Home</h2>
66-
<p>Testing automated deployment Harsh.</p>
67-
</section>
68-
69-
<section id="about">
70-
<h2>About</h2>
71-
<p>Learn more about us in this section.</p>
72-
</section>
115+
<div class="hero">
116+
<h2>Transform Your DevOps Journey</h2>
117+
<p>Learn how to automate your development pipeline and deploy with confidence</p>
118+
<a href="#get-started" class="cta-button">Get Started Today</a>
119+
</div>
73120

74-
<section id="contact">
75-
<h2>Contact</h2>
76-
<p>Get in touch with us here.</p>
77-
</section>
121+
<div class="features">
122+
<div class="feature-card">
123+
<img src="/api/placeholder/400/200" alt="CI/CD Pipeline" class="feature-icon">
124+
<h3>CI/CD Pipelines</h3>
125+
<p>Master the art of building efficient pipelines that automate your testing and deployment processes. Learn best practices for continuous integration and delivery.</p>
126+
</div>
127+
<div class="feature-card">
128+
<img src="/api/placeholder/400/200" alt="Plugin Ecosystem" class="feature-icon">
129+
<h3>Plugin Ecosystem</h3>
130+
<p>Explore Jenkins' vast plugin ecosystem. Discover how to extend Jenkins' functionality with popular plugins for source control, testing, and deployment.</p>
131+
</div>
132+
<div class="feature-card">
133+
<img src="/api/placeholder/400/200" alt="Security" class="feature-icon">
134+
<h3>Security & Best Practices</h3>
135+
<p>Learn how to secure your Jenkins installation, manage credentials safely, and implement security best practices in your CI/CD pipeline.</p>
136+
</div>
137+
</div>
78138

79139
<footer>
80-
<p>&copy; 2025 raju Webpage</p>
140+
<p>&copy; 2025 Jenkins Master Class - Empowering DevOps Excellence</p>
141+
<nav>
142+
<ul>
143+
<li><a href="#privacy">Privacy Policy</a></li>
144+
<li><a href="#terms">Terms of Service</a></li>
145+
<li><a href="#contact">Contact Us</a></li>
146+
</ul>
147+
</nav>
81148
</footer>
82149
</body>
83150
</html>

0 commit comments

Comments
 (0)