<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Stitch Image</title>
</head>
<body>
<script>
// Create an image element
const img = document.createElement('img');
img.src = 'https://upload.wikimedia.org/wikipedia/en/7/7e/Stitch_%28Lilo_%26_Stitch%29.png'; // URL of Stitch
img.alt = 'Stitch from Lilo & Stitch';
img.style.width = '300px'; // Set image size
img.style.borderRadius = '12px'; // Optional: rounded corners
img.style.boxShadow = '0 4px 8px rgba(0,0,0,0.2)'; // Optional: shadow
// Add it to the page
document.body.appendChild(img);
</script>
</body>
</html>
2
2
1KB
1KB
181.0ms
380.0ms
375.0ms