PPT Editor
Preview
Edit
Export
PPT HTML Code
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Introduction to Thermodynamics</title> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap" rel="stylesheet"> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { display: flex; justify-content: center; align-items: center; min-height: 100vh; background-color: #f5f5f5; padding: 20px; } .slide-container { width: 1280px; min-height: 720px; display: flex; flex-direction: column; font-family: 'Montserrat', sans-serif; position: relative; background-color: #ffffff; color: #333333; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); padding: 40px; } .slide-header { margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid #003366; } .slide-header h1 { font-size: 36px; font-weight: 600; color: #003366; } .content-wrapper { display: flex; flex: 1; gap: 30px; margin-top: 10px; } .text-content { flex: 1; display: flex; flex-direction: column; justify-content: space-between; } .text-section { margin-bottom: 25px; } .text-section h3 { font-size: 20px; font-weight: 600; color: #003366; margin-bottom: 10px; } .text-section p, .text-section li { font-size: 16px; line-height: 1.5; margin-bottom: 8px; } .text-section ul { list-style-type: none; padding-left: 0; } .text-section li { position: relative; padding-left: 20px; } .text-section li:before { content: "•"; color: #003366; font-weight: bold; position: absolute; left: 0; } .image-content { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; } .image-content img { max-width: 100%; height: auto; border: 1px solid #ddd; border-radius: 4px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); } .fig-caption { font-size: 14px; color: #666; margin-top: 10px; text-align: center; font-style: italic; } .slide-footer { position: absolute; bottom: 20px; right: 20px; font-size: 14px; color: #666; } @media (max-width: 1300px) { .slide-container { width: 100%; min-height: 600px; } } </style> </head> <body> <div class="slide-container"> <div class="slide-header"> <h1>Introduction to Thermodynamics</h1> </div> <div class="content-wrapper"> <div class="text-content"> <div class="text-section"> <h3>Definition</h3> <p>Thermodynamics is the branch of physics that deals with the relationships between heat, work, temperature, energy, and the laws governing energy conversion.</p> </div> <div class="text-section"> <h3>Key Concepts</h3> <ul> <li><strong>Energy:</strong> Capacity to do work or produce heat</li> <li><strong>Temperature:</strong> Measure of average kinetic energy</li> <li><strong>Entropy:</strong> Measure of disorder or randomness</li> <li><strong>Thermal Equilibrium:</strong> State where no heat transfer occurs</li> </ul> </div> <div class="text-section"> <h3>Importance</h3> <p>Thermodynamics forms the foundation for engineering disciplines, chemical processes, physical theories, and explains everyday phenomena from engine operation to climate systems.</p> </div> </div> <div class="image-content"> <img src="https://www.chemistrylearner.com/wp-content/uploads/2022/08/Laws-of-Thermodynamics.jpg" alt="Thermodynamic System and Surroundings"> <p class="fig-caption">Fig 2.1 Thermodynamic System and Surroundings</p> </div> </div> <div class="slide-footer"> Slide 2 </div> </div> </body> </html>
Load PPT
Load your PPT code to start editing