|
1 | 1 | <!DOCTYPE html> |
2 | | -<html> |
| 2 | +<html lang="en"> |
3 | 3 | <head> |
4 | | - <meta charset="utf-8"> |
5 | | - <title>Sample Deployment</title> |
6 | | - <style> |
7 | | - body { |
8 | | - color: #ffffff; |
9 | | - background-color: #117a65; |
10 | | - font-family: Arial, sans-serif; |
11 | | - font-size: 14px; |
12 | | - } |
13 | | - |
14 | | - h1 { |
15 | | - font-size: 500%; |
16 | | - font-weight: normal; |
17 | | - margin-bottom: 0; |
18 | | - } |
19 | | - |
20 | | - h2 { |
21 | | - font-size: 200%; |
22 | | - font-weight: normal; |
23 | | - margin-bottom: 0; |
24 | | - } |
25 | | - </style> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Interactive Deployment with Background Image</title> |
| 7 | + <style> |
| 8 | + |
| 9 | + body, html { |
| 10 | + margin: 0; |
| 11 | + padding: 0; |
| 12 | + height: 100%; |
| 13 | + font-family: 'Arial', sans-serif; |
| 14 | + color: white; |
| 15 | + text-align: center; |
| 16 | + background: url('https://imgv3.fotor.com/images/share/Free-pink-gradient-aesthetic-background-from-Fotor.jpg') no-repeat center center/cover; |
| 17 | + display: flex; |
| 18 | + align-items: center; |
| 19 | + justify-content: center; |
| 20 | + } |
| 21 | + |
| 22 | + .overlay { |
| 23 | + background: rgba(0, 0, 0, 0.6); |
| 24 | + padding: 50px 50px; |
| 25 | + border-radius: 15px; |
| 26 | + box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3); |
| 27 | + max-width: 600px; |
| 28 | + text-align: center; |
| 29 | + backdrop-filter: blur(5px); |
| 30 | + } |
| 31 | + |
| 32 | + h1 { |
| 33 | + font-size: 48px; |
| 34 | + font-weight: bold; |
| 35 | + margin-bottom: 15px; |
| 36 | + text-transform: uppercase; |
| 37 | + letter-spacing: 2px; |
| 38 | + } |
| 39 | + |
| 40 | + h2 { |
| 41 | + font-size: 28px; |
| 42 | + margin-bottom: 15px; |
| 43 | + font-weight: 500; |
| 44 | + } |
| 45 | + |
| 46 | + p { |
| 47 | + font-size: 18px; |
| 48 | + line-height: 1.6; |
| 49 | + } |
| 50 | + |
| 51 | + /* Stylish button */ |
| 52 | + .btn { |
| 53 | + display: inline-block; |
| 54 | + margin-top: 20px; |
| 55 | + padding: 12px 25px; |
| 56 | + color: white; |
| 57 | + background: linear-gradient(135deg, #117a65, #0e6655); |
| 58 | + text-decoration: none; |
| 59 | + border-radius: 5px; |
| 60 | + font-size: 18px; |
| 61 | + font-weight: bold; |
| 62 | + box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); |
| 63 | + transition: 0.3s ease-in-out; |
| 64 | + } |
| 65 | + |
| 66 | + .btn:hover { |
| 67 | + background: linear-gradient(135deg, #0e6655, #117a65); |
| 68 | + transform: translateY(-3px); |
| 69 | + box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5); |
| 70 | + } |
| 71 | + </style> |
26 | 72 | </head> |
27 | 73 | <body> |
28 | | - <div align="center"> |
29 | | - <h1>Congratulations!</h1> |
30 | | - <h2>F019772- You have successfully created a pipeline that retrieved this source application from an Amazon S3 bucket and deployed it |
31 | | - to three Amazon EC2 instances using AWS CodeDeploy.</h2> |
32 | | - <p>For next steps, read the AWS CodePipeline Documentation.</p> |
33 | | - </div> |
| 74 | + <div class="overlay"> |
| 75 | + <h1>Congratulations!</h1> |
| 76 | + <h2>F019772 - Successful Deployment!</h2> |
| 77 | + <p>You have successfully created a pipeline that retrieved this source application from AWS Elastic Beanstalk and deployed it |
| 78 | + to three Amazon EC2 instances using AWS CodeDeploy.</p> |
| 79 | + <a href="https://docs.aws.amazon.com/codepipeline/latest/userguide/welcome.html" class="btn">Read AWS CodePipeline Documentation</a> |
| 80 | + </div> |
34 | 81 | </body> |
35 | 82 | </html> |
36 | 83 |
|
0 commit comments