HTNL Background by rcalan
साप्तप्त
हेट
मेर
Answers
Answer:
चौथी चुनौती यह है कि अक्सर पार्टियां हमारे देश में मतदाताओं को सार्थक विकल्प प्रदान नहीं करती हैं आर्थिक नीतियों में सभी प्रमुख दलों के बीच अंतर कई बार एक पार्टी से दूसरे दल में स्थानांतरित होने वाले नेताओं के एक ही सेट को कम कर दिया है कि लोगों के पास उनके पास कोई विकल्प उपलब्ध नहीं है
Answer:
Add a background image on a HTML element:
<div style="background-image: url('img_girl.jpg');">
Specify the background image in the <style> element:
<style>
div {
background-image: url('img_girl.jpg');
}
</style>
Add a background image for the entire page:
<style>
body {
background-image: url('img_girl.jpg');
}
</style>
To avoid the background image from repeating itself, set the background-repeat property to no-repeat.
Example
<style>
body {
background-image: url('example_img_girl.jpg');
background-repeat: no-repeat;
}
</style>
Explanation: