What is src ? | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
+ 1

What is src ?

7th Jan 2017, 4:43 AM
Biswajit Baruah
Biswajit Baruah - avatar
2 Respostas
+ 5
"src" in html context, means "source" and is an attribute of certains html elements, like <img> or <script> tags, for setting the address of a ressource: <img src="url_to_img_file"> <script src="url_to_js_file"></script>
7th Jan 2017, 5:06 AM
visph
visph - avatar
+ 1
The src attribute instructs the browser where on the server it should look for the image thatā€™s to be presented to the user. This may be an image in the same directory, an image somewhere else on the same server, or an image stored on another server. The example refers to an image thatā€™s located in the same directory as the web page thatā€™s calling it, but if the image was stored in a directory that was one level higher than the referencing document, the syntax would be as follows: <img src="../giant-prawn.jpg" alt="The Giant Prawn at Ballina"/> Here, ../ equates to ā€œmove up one directory in the hierarchy.ā€ You can also reference an image relative to the web siteā€™s root (that is, any file or folder after the domain name): <img src="/giant-prawn.jpg" alt="The Giant Prawn at Ballina"/> This basically means ā€œdisplay the image giant-prawn.jpg that can be found in www.example.com/.ā€ This is a very handy way of referencing the file, as you could move the document that referenced the image to any location on the file system without breaking the link. If youā€™re referencing an image thatā€™s held on another server, youā€™d express the src using a complete URI, as follows: <img src="http://www.example.com/giant-prawn.jpg" alt="The Giant Prawn at Ballina"/> Example : The src attribute for this image shows that the image is located in the same directory as the web page: <img src="giant-prawn.jpg" alt="The Giant Prawn at Ballina"/>
7th Jan 2017, 6:53 AM
SOLEYMAN
SOLEYMAN - avatar