Skip to main content

Posts

Website language translator for website plugin

Google language translator This is a very big problem. but now you have easy and fixed solutions. just few click it will possible with the help of google language translator. Step 1: Click this link:   Make your website instantly available in 100+ languages   Step 2:  Put your website URL like "xyz.com" and choose your website's original content written a language. Step 3: Let's Configure your Language changer style. then get  the code Now Copy and paste the code into your website where you want to show the translator option. thank you

Record my computer screen activity

How to record your computer screen activity for computer tutorial or game stages. Features : - Full-screen recording. - Partial screen recording. - Multi-monitor screen recording. - Follow focus window mode. - Follow mouse cursor mode. - Mouse cursor highlight/click effects. - Embed your own text/image logo in recording. - Support full-screen mode games. - Support windowed mode games. - Support Direct3D 8/9/10/11 games. - Support OpenGL games. - In-game webcam overlay. - In-game frame rate info. - In-game recording indicator. - Embed webcam overlay in recording. - Display webcam overlay on desktop. - Display webcam overlay in PC game. - And much more... First, you need some third-party application. lots of application available on the internet but I use ZD Soft Screen Recorder. it's simple and very easy to install and handling also. I download it from the torrent website and I have a direct link for you. Download ZD Soft Screen ...

Activate windows 10 8 8.1 7 and office without product key

In this time many software patch available in internet for crack your windows or office software but i i have some secure and easy way to activate your system or office package You need some software to activate    1.  Microsoft toolkit                              Download Microsoft toolkit 2.  KJ Activator                                    Download KJ Note :  if you user windows 7 or lower version like windows 8, windows 7 or xp then you  Download KJ  . or you activate windows 8.1 or windows 10 and activate ms office then you  Download Microsoft toolkit Example or help for you

Protection office document by password and encryption

Protect Microsoft Word, Excel, PowerPoint And Access About : This features will protect your document protect to unknown persons you can use this features in Word, Excel, Powerpoint, and Access also. You can protect your file in 2 ways  1. Password Protect 2. Encryption Protect Steps Create your Document in word or Workbook in excel or Presentation in Powerpoint Press CTRL + S or go to file menu and click to save or save as button then choose where you want to save the file and before the click save button click TOOLS >> General Option >> Type your password Password to open and Password to modify after set password, this will verify you verify also Now your document now secure by two passwords. Encryption Protect in your document File menu and click  >>  info >>  and then   Protect document option and choose to encrypt with password >> set ...

How to use smooth box shadow in webpage

Webkit and Mozilla: -webkit-box-shadow: 0px 1px 1px 1px rgba(0,0,0,0.15); -moz-box-shadow: 0px 1px 1px 1px rgba(0,0,0,0.15); box-shadow: 0px 1px 1px 1px rgba(0,0,0,0.15); Standard CSS: <style> .bg {     padding:20px;     background:#EEE; } .box {     background: #fff;     width: 400px;     height: 100px;     box-shadow: 0px 2px 3px rgba(0,0,0,.13) ,    1px 2px 2px rgba(0,0,0,.1) ,    -1px -2px 2px rgba(0,0,0,.05) ;    margin:auto; } </style> <div class="bg">     <div class="box">     </div> </div>

How to use custom font in website

Use custom font in your website help of @font-face rule First: you need some font file like - .woff, .ttf etc  Second: download your font using this sites  1001 Free Fonts - Download Fonts 1001 Fonts · Free Fonts Baby! After downloading that create a folder on your root folder by named font and past it. then  @font-face {     font-family: myFont;     src: url(fontname.ttf); } it helps you to create a custom font family name. now your site is ready to use this h1{     font-family: myFont; }

How to Create a secure login panel with PHP & Mysql using parameters and session

Secure Login with PHP & Mysql Download project zip Requirement: you need an Apache and MySQL Server database on your device If your computer has xampp or wamp or mamp  or lamp that's great otherwise you need to install Apache and MySQL server Create a database login Run this query : CREATE TABLE admin ( id INT(6) AUTO_INCREMENT PRIMARY KEY, uname VARCHAR(30) NOT NULL, upass VARCHAR(30) NOT NULL ); INSERT INTO `admin` (`id`, `uname`, `upass`) VALUES (NULL, 'admin', 'admin1993'); That means you set your username =  admin and password = admin1993 Login Page: login.php <!doctype html> <html> <head> <meta charset="utf-8"> <title>Login Getway</title> <link rel="stylesheet" href="http://fontawesome.io/assets/font-awesome/css/font-awesome.css" type="text/css"> <style> * { margin:0px; padding:0px; font-family:ar...