123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Step-by-Step Instructions</title>
- <style>
- body {
- font-family: Arial, sans-serif;
- line-height: 1.6;
- margin: 20px;
- text-align: center;
- }
- h1 {
- color: #333;
- }
- .step {
- margin: 20px 0;
- }
- .step img {
- width: 600px; /* Set all images to 600px width */
- height: auto; /* Maintain aspect ratio */
- border: 2px solid #ddd;
- border-radius: 5px;
- }
- .step h2 {
- margin: 10px 0;
- color: #555;
- }
- </style>
- </head>
- <body>
- <h1>Follow These Steps</h1>
- <p>Please follow the instructions below in the correct order to complete the process.</p>
- <!-- Step 1 -->
- <div class="step">
- <h2>Step 1</h2>
- <img src="1.png" alt="Step 1 Image">
- <p>Begin by completing the first task shown in the image above.</p>
- </div>
- <!-- Step 2 -->
- <div class="step">
- <h2>Step 2</h2>
- <img src="2.png" alt="Step 2 Image">
- <p>Proceed to the next task as illustrated in the second image.</p>
- </div>
- <!-- Step 3 -->
- <div class="step">
- <h2>Step 3</h2>
- <img src="3.png" alt="Step 3 Image">
- <p>Finally, complete the process by following the third step in the last image.</p>
- </div>
- </body>
- </html>
|