<!DOCTYPE html> <html> <head> <title>WEB PAGE WITH IMAGES</title> <style> img.scream { width: 250px; height: 400px; } </style> </head> <body> <!-- Image with defined size using CSS --> <img src="scream.png" alt="Scream Image" class="scream"> </body> </html>