HTMLify
Indic.html
Views: 383 | Author: dakshbadal1379
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Image Responsive</title>
<style>
/* Make the image responsive */
img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
/* Add some basic styling to the container */
.container {
width: 80%; /* adjust the width to your needs */
margin: 40px auto;
padding: 20px;
background-color: #f7f7f7;
border: 1px solid #ddd;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="container">
<img src="your-image-url.jpg" alt="Your Image">
</div>
</body>
</html>
|