Everything delivered via an insecure channel.
In general, this means that the web page developer combines HTTP-based URLs with HTTPS-based URLs on the same page. URLs can be for images, as well as for JavaScript, CSS, or anything else that can be referenced from a web page. As a user, you can do little about this - this is a warning that it is likely that your data may be delivered to other servers in an open, unencrypted way over the Internet. This is Bad Thing, but you canβt do much except to avoid this site or contact the administration or webmaster for the site.
If you are a developer, most of the time you can use URLs related to the schema when accessing images or javascript, etc.
i.e. Instead of this:
<img src="http://example.com/dot.png">
use this:
<img src="//example.com/dot.png">
YMMV.
See also: https://url.spec.whatwg.org/
source share