1<!DOCTYPE html> 2<html lang="en"> 3<head> 4 <meta charset="UTF-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 7 <title>Diff screenshots report</title> 8 <style> 9 .row { 10 display: flex; 11 padding: 1rem; 12 border-radius: .5rem; 13 border: 1px solid black; 14 margin-bottom: 1rem; 15 } 16 .image-wrapper img { 17 max-width: 45vw; 18 } 19 .cmd { 20 font-family: monospace; 21 color: white; 22 background: black; 23 } 24 </style> 25</head> 26<body> 27 <div class="container"> 28 Loading... 29 </div> 30 <script src="script.js"></script> 31</body> 32</html>