|
1 | 1 | <!DOCTYPE html> |
2 | 2 | <html> |
3 | 3 | <head> |
4 | | - <title>Beautiful Webpage</title> |
| 4 | + <title>Jenkins Master Class</title> |
5 | 5 | <style> |
6 | 6 | body { |
7 | | - font-family: Arial, sans-serif; |
| 7 | + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
8 | 8 | margin: 0; |
9 | 9 | padding: 0; |
10 | | - background-color: #f0f0f0; |
| 10 | + background-color: #f5f5f5; |
11 | 11 | color: #333; |
| 12 | + line-height: 1.6; |
12 | 13 | } |
13 | | - |
14 | 14 | header { |
15 | | - background-color: #3674B5; |
| 15 | + background: linear-gradient(135deg, #13547a 0%, #80d0c7 100%); |
16 | 16 | color: white; |
17 | 17 | 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); |
18 | 29 | padding: 1em 0; |
| 30 | + margin-top: 1em; |
19 | 31 | } |
20 | | - |
21 | 32 | nav ul { |
22 | 33 | padding: 0; |
23 | 34 | list-style-type: none; |
| 35 | + margin: 0; |
24 | 36 | } |
25 | | - |
26 | 37 | nav ul li { |
27 | 38 | display: inline; |
28 | | - margin-right: 20px; |
| 39 | + margin: 0 15px; |
29 | 40 | } |
30 | | - |
31 | 41 | nav ul li a { |
32 | 42 | color: white; |
33 | 43 | text-decoration: none; |
| 44 | + font-weight: 500; |
| 45 | + transition: color 0.3s; |
34 | 46 | } |
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; |
39 | 53 | 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; |
41 | 65 | 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; |
42 | 77 | } |
43 | | - |
44 | 78 | footer { |
45 | 79 | text-align: center; |
46 | | - padding: 1em 0; |
47 | | - background-color: #333; |
| 80 | + padding: 2em 0; |
| 81 | + background-color: #13547a; |
48 | 82 | 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; |
49 | 97 | } |
50 | 98 | </style> |
51 | 99 | </head> |
52 | 100 | <body> |
53 | 101 | <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> |
55 | 105 | <nav> |
56 | 106 | <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> |
59 | 110 | <li><a href="#contact">Contact</a></li> |
60 | 111 | </ul> |
61 | 112 | </nav> |
62 | 113 | </header> |
63 | 114 |
|
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> |
73 | 120 |
|
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> |
78 | 138 |
|
79 | 139 | <footer> |
80 | | - <p>© 2025 raju Webpage</p> |
| 140 | + <p>© 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> |
81 | 148 | </footer> |
82 | 149 | </body> |
83 | 150 | </html> |
0 commit comments