Untitled
plain_text
a month ago
588 B
1
Indexable
Never
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Responsive Image</title> <style> /* This ensures that the image will not exceed the width of its container */ img.responsive { max-width: 100%; height: auto; } </style> </head> <body> <!-- Assuming your local image is named 'my-image.jpg' and is in the same directory as this HTML file --> <img src="my-image.jpg" alt="Description of Image" class="responsive"> </body> </html>