In: Computer Science
Please provide steps in order to obtain an ABSOLUTE url to a google image. This ABSOLUTE url should work in an HTML code
Dear Student ,
As per the requirement submitted above , kindly find the below solution.
Steps to obtain ABSOLUTE url to a google image :
1.Browse for https://www.google.com/
2. Right click on Google image and click on copy image address as shown in below screen
Demonstration :
Here a new web page with name "google.html" is created, which contains following code.
google.html :
<!DOCTYPE html>
<html lang="en">
<head>
<!--title for web page -->
<title>Google Image Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<!--Image tag that show google image -->
<img
src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png"
/>
</body>
</html>
======================================================
Output : Open web page google.html in the browser and will get the screen as shown below
Screen 1 : google.html
NOTE : PLEASE FEEL FREE TO PROVIDE FEEDBACK ABOUT THE SOLUTION.