How to Image alt Attribute ?
SEO Help and Tips
How to Image alt Attribute ?
Here is the example code of image alt attribute. The required alt attribute for the <img> tag specifies an alternate text for image, if the image cannot be displayed for any reason.
Here is the code Example:
<head>
<title>Advanced Image Display</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
text-align: center;
}
img {
max-width: 100%;
height: auto;
border: 1px solid #ccc;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
p {
margin-top: 20px;
color: #555;
}
</style>
</head>
<body>
<div class="container">
<img src="img_typo.jpg" alt="Girl with a jacket">
<p>If the image is unavailable, the alt attribute will be displayed instead.</p>
</div>
</body>
Comments
Post a Comment
Thanks for your Comments.