Google Recaptcha Site Key and Secret Key Generate and Integrate
Google Recaptcha Site Key and Secret Key Generate If you also want to put I am not robot captcha on your site, then you have to first generate the site…
Select tag with input tag display none or block | How can I show a hidden div when a select option is selected?
Select tag with input tag display none or block <!DOCTYPE html> <html> <head> <style> #hidden_input { display: none; } </style> </head> <body> <select id=”test” name=”form_select” onchange=”showDiv(‘hidden_input’, this)”> <option value=”0″>Hide</option> <option…
Contact us page design in html and css with source code
Contact us page design in html and css with source code Most importantly, we are familiar the code in html of this enrollment structure. We have taken a div inside…
Registration form design in html and css with code
Registration form design in html and css with code Most importantly, we are familiar the code in html of this enrollment structure. We have taken a div inside the body…
Mobile friendly registration form html code with css
Mobile friendly registration form html code with css First we should be aware of the html code of responsive enlistment structure. We have taken a div inside the body label…
How to Fix/Solve Full description (en_US): “Missing source of information and disclaimer”
Full description (en_US): “Missing source of information and disclaimer” In today’s time Google Play Console team is getting rejected by putting such a message, if you are also reading to face…
how to use sweet alert in php or html | Sweet alert in php echo | How to edit a JavaScript alert box title? | alert box css style
how to use sweet alert in php or html | Sweet alert in php echo | How to edit a JavaScript alert box title | alert box css style The…
How to calculate debit credit and balance in SQL | how to display user balance in mysql
<?php $connpans = mysqli_connect(‘localhost’,’user’,’pass’,’db’); $sqlp=”select * from login_user”; $resultp=mysqli_query($connpans,$sqlp); $userdata=mysqli_fetch_assoc($resultp); $wallet = $userdata[‘wallet’]; if ($userdata[‘wallet’] == “”) { $balance = 0; } else { $balance = $userdata[‘wallet’]; ///output balance: 100.9872749837958…
Font style in CSS | HTML font family list | how to change font style in html
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet"> And in the stylesheet body { font-family: 'Roboto', sans-serif; } In any case the desired font must be available when the client displays the page. You can…
@media only screen desktop css | How to use media query for mobile |How to target desktop, tablet and mobile using Media Query
The media attribute specifies what media or device the linked document is optimized for. This attribute is used to specify that the target URL is designed for special devices (like iPhone),…