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, 1585🔥, 0💬
Popular Posts:
How to Install Docker Desktop 2.5.0 on Windows 10? You can follow this tutorial to Install Docker De...
Can You Add Values to an Array without Keys in PHP? Can You Add Values to an Array with a Key? The a...
How to register and get an application ID from Azure AD? The first step to use Azure AD is to regist...
How to use .NET CLR Types in Azure API Policy? By default, Azure imports many basic .NET CLR (Common...
How to access URL template parameters from "context.Request.Matched Parameters"object in Azure API P...