answersLogoWhite

0

http://wiki.answers.com/Q/How_can_you_use_tha_image_tags_in_wml_script"

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

How an image can be displayed within a table?

You would use the TABLE TR and TD tags to set up a table. Then within a cell, which would be inside a pair of TD tags, you would use the IMG tag to enter your image.


What script do you use to create an image of a windows 7 computer on multiple cds?

createspannedshare.cmd


Can someone use a copyright image if it is not for profit and used to make tags or alphabets?

No; simply being not for profit does not mean the use is fair.


How do you place images on a website below each other using CSS?

Don't really need to use CSS, but you can set each image as a background of a div container, or use the image tag inside block level tags like div or paragraph tags. These will ensure that the images go below each other. You can also use unordered list tags, table tags, etc.. The only CSS used then is to make it look the way you want the page to look.


How do you make an smaller image link to a larger image?

Use link tags <a href="http://www.yoursite.com/yourimage.jpg"> </a> around the <img src=> tags. Make the link tags go directly to the image on your server. When the user clicks the thumbnail, it will load the larger image directly in their browser. Of course, they will need to hit the back button to go back to your site, or you could make it load in another tab or window through code.


How do you add a logo to your URL address?

You have to set the image tag nested inside of the hyperlink tags if you wish to use an image. <a href="http://www.website.com"><img src="http://www.website.com/image.gif" /></a> But if you prefer to use the slogan or name of your company instead, replace the image tags with the text you want to use. <a href="http://www.website.com">Your text here</a> Whatever you put, image source or text between the hyperlink reference tags, will become click-able and link directly to your site, or whatever website address (URL) you put in the reference tags.


Are there any tags in HTML to upload or download a file?

You will need to use a script such as PHP or ASP for uploading purposes. You can use an anchor tag for downloading:right click and choose 'save as' to download


How do you make the website links in one column change the web content in another column?

The only way I know to do this without an imbedded script is to use tables and Iframes. Follow this link for more info on tags;http://www.w3schools.com/tags/tag_iframe.asp


What are the steps to search for exif tags in an image file?

To search for Exif tags in an image file, you can use software or online tools that can read and display Exif data. Simply upload the image file to the tool, and it will show you the Exif information, which includes details like camera settings, date and time the photo was taken, and location data if available.


How do you insert jQuery directly in joomla article?

To insert jQuery directly into a Joomla article, you can use the "Custom HTML" module or a text editor within the article. First, ensure that the jQuery library is loaded by adding the following code in your article's editor: <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>. After that, you can add your jQuery code within <script> tags, ensuring that it is properly wrapped to avoid conflicts with Joomla's output. Remember to set your article editor to allow script tags if necessary.


How do you send a .gif image in the body of an email in Gmail?

You click on the paper clip icon and attach the gif and it will come out when you send it to someone. -- copy the image from an image viewing program and paste in the body of the email if that does not work, attach it as a gif, then use HTML tags to include it into the body. <image>filename.gif</image> .. I think.


Which tag is used to implement javascript in an HTML file?

The SCRIPT tag is used to implement a JavaScript (or other kind, i.e. VBScript) in an HTML document. The tag can either contain the actual JavaScript code, or can point to an external script file that should be included at render-time. To add JavaScript directly to the document in HTML 5, place these tags in either the HEAD section or just prior to the BODY sections closing tag. <script type="text/javascript"> //JS code goes here </script> To call an external JavaScript file, use the "src" attribute, like so: <script type="text/javascript" src="path/to/script.js"></script> If you're unsure of where to put the JavaScript tags, see the related answer(s).