How to add Responsive google Map in Webpage

In the video I have shown how you can integrate a responsive google map in web page. Source code. <style> .google-maps { position: relative; padding-bottom: 75%; // This is the aspect ratio height: 0; overflow: hidden; } .google-maps iframe { position: absolute; top: 0; left: 0; width: 100% !important; height: 100% !important; } </style> <div …

Continue reading

Integrate login with Social Network using JAVA

All the popular Social Media login integration is shown in the pages below. It includes Facebook, Reddit, Google, Instagram and LinkedIn. Go through the below pages. All the source code is shared in corresponding pages. Login with Facebook. https://chillyfacts.com/integrate-login-with-facebook-using-java/ Login with Google. https://chillyfacts.com/integrate-login-with-google-in-websites-with-java/ Login with Reddit. https://chillyfacts.com/integrate-login-with-reddit-in-website-using-java/ Login with Instagram. https://chillyfacts.com/integrate-login-with-instagram-in-website-using-java/ Login with LinkedIn. https://chillyfacts.com/integrate-login-with-linkedin-in-website-using-java/

Continue reading

Add reCaptcha I m not a robot in JAVA JSF Websites

This tutorial shows step by step how to include reCaptcha I m not a robot in JAVA JSF Websites. First you have to register with Google recaptcha and get the Site Key and Secret Key. Visit this link to get the step by step process. https://chillyfacts.com/add-recaptcha-i-m-not-a-robot-in-java-websites/ After Registering new site, You will get a Site …

Continue reading

Java program to send email using smtp

Download the project shown in youtube here, send_mail.rar Project Structure in Eclipse. This project uses jars activation-1.1.1.jaractivation-1.1.1.jar and mail-1.4.1.jar.mail-1.4.1.jar Send email using Gmail with Java program below Update the From email id,password and to email id with your email information. send_email_gmail.java package email; import java.util.*; import javax.mail.*; import javax.mail.PasswordAuthentication; import javax.mail.internet.*; public class send_email_gmail { …

Continue reading