Tools, FAQ, Tutorials:
Attributes of an HTML 'img' Element
What Are the Attributes of an "img" Element?
✍: FYIcenter.com
There are 4 commonly used attributes for an "img" element:
Here is a tutorial example of an "img" element with all 4 attributes:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Image Attributes</title> </head> <body> <h4>Inline Images</h4> <p style="background-color: #eeeeee; padding: 8px;"> What is the size of this image? <img src="/moonrise.jpg" alt="Moonrise" width="69" height="91"/> width="69" and height="91".</p> </body> </html>
If you save the above document as image_attributes.html, download this image file and view it with Internet Explorer, you will see an image embedded inline with width and height attributes in a text paragraph as shown below:
⇒ Reducing the Display Size of an Image in HTML
2017-03-27, 1410🔥, 0💬
Popular Posts:
How to add a new operation to an API on the Publisher Dashboard of an Azure API Management Service? ...
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...
How to login to the Developer Portal internally by you as the publisher? Normally, the Developer Por...
How to Build my "sleep" Docker image from the Alpine image? I want the container to sleep for 10 hou...
What is the Azure AD v1.0 OpenID Metadata Document? Azure AD v1.0 OpenID Metadata Document is an onl...