answersLogoWhite

0

Input elements uses the SRC attribute?

Updated: 8/18/2019
User Avatar

Wiki User

12y ago

Best Answer

radio

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Input elements uses the SRC attribute?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Which image attribute specifies the location of the image?

src


What attribute identifies the file that wil appear in a frame?

The SRC attribute identifies what will appear in a frame.


Which attribute specifies the name of the image to display in HTML?

There is an attribute which defines the name of the image to be displayed. The attribute is called as ALT or alternate.


What src does mean?

Src is an attribute for an image tag used by the website to find the source of the image here's a visual <img src='this is the place you put the image's URL'>


How do you add image to my HTML?

simply use the <img> tag... include the src attribute and link it to the images URL like so: <img src="http://www.whateverTheUrlIs.com"> you should also include the <alt> attribute to make your code perfect: <img src="........" alt=".....">


What is the fullform of src in HTML?

state reorganisation commission


Which attribute is used in script tag to specify a file containing the java script statements?

The script tag will have the "src" attribute to identify the location of the script's contents.


How do you get emage HTML?

the tag is used to insert images. It is an empty element that only has attributes. Two attributes are required for the element: the src attribute and the alt attribute. The src attribute specifies the path of the image file. The alt attribute specifies an alternative text for the image, if the image is unavailable. The syntax for the tag is as follows: To know more check out the cronj IT site.


Can you make an HTML code that just fetches the code you want from another site and uses it on the current site where you put the original code?

Yes, use an <IFRAME> tag and set the SRC= attribute to the other site's URL.


Is true In HTML the general syntax for inline image is srcimage?

We use the img tag with the src attribute, like this:


What daes it src in javascript?

The src attribute specifies a local or remote (files that aren't on the same server as the webpage requesting them) javascript file to be loaded into the page, for instance: <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> will load the popular jQuery library into the page.


Can a static site contain JavaScript?

Yes. JavaScript can be included inline or via script tag's src attribute (as long as the browser can find the file at the specified location.)