Posts

Showing posts from February, 2018

amazing website

Image
Hi friends , In this post I am find 5 interesting websites in google . I am share with you from this website you should check this website . this website is very interesting and amazing . 1-      Internet Map :   http://internet-map.net/ 2-      Scale of the Universe :    http://htwins.net/scale2/               this website is work inly your browser is supported from the adobe flash. 3-      Pointer Pointer : http://www.pointerpointer.com/ 4-      Infinite Zoom : http://zoomquilt.org/ 5-      Quick Essay : http://www.essaytyper.com/

trace email

Image
How to trace an Email : Tracing an Email means locating the Original Sender and Getting to know the IP address of the network from which the Email was actually generated.  To get the information about the sender of the Email we first must know the structure of the Email. As we all know the travelling of the Email. Each message has exactly one header, which is structured into fields. Each field has a name and a value. Header of the Email contains all the valuable information about the path and the original sender of the Email. For tracing an email Address You need to go to your email account and log into the email which you want to trace after that you have to find the header file of the email which is received by you. Gmail Now see from bottom to top and the first IP address you find is the IP address of the sender. Once you have the IP Address of the sender, go to the any ip location website and enter this ip address . I am...

Border Radius in CSS3

Image
<!DOCTYPE html> <html> <head> <title>CSS3 Border Radius Examples</title> <style> .box { margin-bottom:10px; font-family :'Courier New', monospace; font-size :12pt; text-align :center; padding :10px; width :380px; height :75px; border :10px solid #006; } .b1 { -moz-border-radius :40px; -webkit-border-radius:40px; border-radius :40px; } .b2 { -moz-border-radius :40px 40px 20px 20px; -webkit-border-radius:40px 40px 20px 20px; border-radius :40px 40px 20px 20px; } .b3 { -moz-border-radius-topleft :20px; -moz-border-radius-topright :40px; -moz-border-radius-bottomleft :60px; -moz-border-radius-bottomright :80px; -webkit-border-top-left-radius :20px; -webkit-border-top-right-radius :40px; -webkit-border-bottom-left-radius :60px; -webkit-border-bottom-right-radius:80px; border-top-left-radius :20px...

Animated Search Box in CSS3

Image
--------- Index.html ---------- <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link rel="stylesheet" href="style.css" type="text/css" /> <title>Untitled Document</title> </head> <body> <div class="searchBox">     <div class="searchForm">         <input id="searchField" type="text" placeholder="Search Here" />          <div class="close">             <span class="front"></span>             <span class="back"></span>         </div>      </div> </div> </body> </html> ------- style.css -------- body{     margin: 0;     padding: 0;     background:#111; } .searchBox{     position: absolute;     top: 50...

Transitioning on hover effect in CSS3

<!DOCTYPE html> <html> <head> <title>Transitioning on hover effect</title> <style> #square { position :absolute; top :50px; left :50px; width :100px; height :100px; padding :2px; text-align :center; border-width :1px; border-style :solid; background :orange; transition :all .8s ease-in-out; -moz-transition :all .8s ease-in-out; -webkit-transition:all .8s ease-in-out; -o-transition :all .8s ease-in-out; -ms-transition :all .8s ease-in-out; } #square:hover { background :yellow; -moz-transform :rotate(360deg); -webkit-transform :rotate(360deg); -o-transform :rotate(360deg); -ms-transform :rotate(360deg); transform :rotate(360deg); } </style> </head> <body> <div id='square'> Square shape<br> created using<br> a simple div<br> element with<b...

Apply margin in css

<!DOCTYPE html> <html> <head> <title>Margins</title> <style> #object1 { background :lightgreen; border-style:solid; border-width:1px; font-family :"Courier New"; font-size :9px; width :250px; height :250px; padding :5px; margin :10px 20px 30px 40px; } table { padding :0; border :1px solid black; background :cyan; } </style> </head> <body> <table> <tr> <td> <div id='object1'>margin:<br>10px 20px 30px 40px;</div> </td> </tr> </table> </body> </html>

Left navigation bar in css

<html>   <head>     <style>       div#navigation {         float: left;         width: 200px;         height: 100%;         color: #ffffff;         background-color: #666;         border: 1px solid #000;         padding: 5px;       }       a {         display: block;         text-decoration: none;       }     </style>   </head> <body>   <div id="navigation">     <a href="">Navigation item 1</a>     <a href="">Navigation item 2</a>     <a href="">Navigation item 3</a>     <a href="">Navigation item 4</a>   </div> </body> </html>

Create Box Model Visibility in CSS

<html>   <head>     <title></title>       <style type="text/css">         * .box {           display: static;           overflow: visible;           visibility: visible;           width: 160px;           height: 150px;           padding: 30px;           border-top: 30px solid gray;           border-bottom: 30px solid black;           border-left: 30px solid gray;           border-right: 30px solid black;           margin-left: 230px;           margin-top: 80px;           background-color: #ccc;         }       </style>   ...

Create Accordion with CSS

<!DOCTYPE html> <html> <head> <style type='text/css'> nav a {   display: block; } summary {   cursor: pointer; } summary::-webkit-details-marker {   display: none; } </style> </head> <body>   <details>     <summary>Heading #1</summary>     <nav>       <a href="#">Link A</a> <a href="#">Link B</a> <a href="#">Link C</a>     </nav>   </details> </body> </html>

Text Shadow

<html> <head> <title>Text Shadow </title> <style rel="stylesheet" type="text/css"> h1 {   font-family: arial; } h1.complex {   text-shadow: 3px 3px red, yellow -3px 3px 2px, 3px -3px } </style> </head> <body> <h1 class="complex">Complex text shadow</h1> </body> </html>

Create page number in css

< ! DOCTYPE html > < html > < head > < style type= 'text/css' > .online { border -radius: 5px; -moz- border -radius: 5px; -webkit- border -radius: 5px; border : 2px solid #AAA; width : 20px; text-align: center; padding : 2px; display : inline-block; } .test { display : inline-block; } </style> </head> < body > < div class= "test" > < div class= "online" > 0 </div> < div class= "online" > 1 </div> < div class= "online" > 2 </div> < div class= "online" > 3 </div> < div class= "online" > 4 </div> < div class= "online" > 5 </div> < div class= "online" > 6 </div> < div class= "online" > 7 </div> < div class= "online" > 8 </div> < div cl...

Image Slideshow using CSS3

< ! DOCTYPE html > < html > < head > < style type= 'text/css' > body:hover { -webkit- animation -play-state: paused; -moz- animation -play-state: paused; } #tech-slideshow { height : 221px; width : 332px; position : relative; overflow : hidden; } #tech { height : 221px; width : 660px; background : url(image.jpg ); position : absolute; top : 0; left : 0; height : 100%; -webkit- animation -play-state: paused; -webkit- animation : moveSlideshow 10s linear infinite; -moz- animation -play-state: paused; -moz- animation : moveSlideshow 10s linear infinite; } @-webkit-keyframes moveSlideshow { 0% { left : 0;}100%{ left :-1328px;}} @-moz-keyframes moveSlideshow { 0% { left : 0;}100%{ left :-1328px;}} #tech:hover { -webkit- animation -play-state: running; -moz- animation -play-state: running; } </style> </head> < body > < div id= "tech-slideshow" > < div id= "tec...

Shutdown Computer With Funny Reason

In this code you can type in the cmd so computer has been shutdown with funny reason try and enjoy the code . Step 1 : Open CMD (Command Prompt) Step 2 : type this below command in CMD               shutdown -s  -t 500 -c "I am tired. I don't want to work anymore." (with the quotes) Step 3 : Press Enter . Note :  The -c switch is used in the code to give the reason for shutting down and what is followed in quotes will be displayed in the dialog box as the reason. This can be used to display all sorts of funny messages . First you have close all the programme before type this command because computer has been shut down from this command so .

Fly up when hovering effect in css

<!DOCTYPE html> <html>   <head>     <style type='text/css'>       ul {         list-style-type: none;       }       li {         float: left;         margin: 5px;       }       a {         display: block;         line-height: 2500px;         height: 100px;         width: 100px;         border-radius: 0 100px 100px 100px;         text-align: center;         background-color: #ccc;         color: transparent;         text-shadow: 0px 0px 100px rgba(0, 0, 0, 0);         -webkit-transition: all .6s ease-in;       }       a:hover {         backgroun...

Enlarge grid cell in animation in css

<!DOCTYPE html> <html>   <head>     <style type='text/css'>       ul, li {         list-style: none;         padding: 0;         margin: 0;       }       ul {         width: 400px;       }       li, .item {         width: 100px;         height: 100px;       }       li {         float: left;         margin: 5px;         position: relative;       }       .item {         background-color: #eee;         border: 1px solid #ccc;         position: absolute;         z-index: 1;         -webkit-transition: all 0.1s eas...

Create CSS3 animation on width

<!DOCTYPE html> <html> <head> <style type='text/css'> #demo {   width: 100px;   height: 100px;   background: red;   transition: width 1s;   -moz-transition: width 1s;   -webkit-transition: width 1s;   -o-transition: width 1s; } #demo:hover {   width: 300px; } </style> </head> <body>   <div id="demo"></div> </body> </html>

Create two borders in css

Image
<!DOCTYPE html> <html> <head> <style type='text/css'> #borders {   position: relative;   z-index: 10;   padding: 30px;   background: #fff;   border: 2px solid #390; } #borders:before {   content: "";   display: block;   position: absolute;   z-index: -1;   top: 2px;   left: 2px;   right: 2px;   bottom: 2px;   border: 2px solid #36F } </style> </head> <body>   <div id="borders"></div> </body> </html>

Handle Nested hover events Effect in CSS

Image
In this tutorial i am create Handle to Nested Hover Events in css . the box should be same color but if you have hover the mouse in all the box will be change their color and hover from the mouse will be effect from the different color . you can try to this code and run . demo will be below the code . <!DOCTYPE html> <html> <head> <style type='text/css'> .link-wrap { background-color: lightgray; overflow: auto; display: inline-block; } .link-panel { width: 100px; line-height: 100px; text-align: center; background-color: blue; color: white; float: left; margin: 10px; } .link-wrap:hover .link-panel { background-color: red; color: black; } .link-wrap .link-panel:hover { background-color: green; color: white; } </style> </head> <body> <div class=...

Blue Screen of Death Using Notepad

Image
How To Make A Full Screen Fake Virus w_ Blue Screen of Death Using Notepad Just copy below command in notepad and save it ad bat extension @echo off echo ---------------------------------------------------------------------- echo WARNING! A VIRUS HAS BEEN DETECTED ON YOUR COMPUTER! pause echo FILE RECOGNIZED AS SISDPYGnfg32.bat pause echo CONTACTING ANTIVIRUS... pause echo WOULD YOU LIKE TO DELETE THE VIRUS? (y/n) pause echo ANTIVIRUS HAS BEEN MANUALLY SHUT DOWN! pause echo VIRUS HAS PROGRESSED TO C:/ DRIVE! pause echo FILES IN C:/ WILL BE DELETED! pause echo PRESS ANY KEY TO PREVENT FILE DELETION! echo PRESS ANY KEY TO PREVENT FILE DELETION! echo PRESS ANY KEY TO PREVENT FILE DELETION! echo PRESS ANY KEY TO PREVENT FILE DELETION! echo PRESS ANY KEY TO PREVENT FILE DELETION! echo PRESS ANY KEY TO PREVENT FILE DELETION! echo PRESS ANY KEY TO PREVENT FILE DELETION! echo PRESS ANY KEY TO PREVENT FILE DELETION! echo PRESS ANY KEY TO PREVENT FILE DELETION! ec...

circle shaped animate on hover effect in css

< ! DOCTYPE html > < html > < head > < style type= 'text/css' > .myborder { width : 100px; height : 100px; background : lightgreen; transition : all .5s; -webkit- transition : all .5s; -moz- transition : all .5s; } .myborder:hover { border -radius: 50%; border : 2px solid darkblue; } </style> </head> < body > < div class= "myborder" > </div> </body> </html>

Create Blur Animation effect items on hover in css

< ! DOCTYPE html > < html > < head > < style type= 'text/css' > ul { height : 200px; list-style: none; margin : 100px auto; width : 400px; } li { background : red; float : left ; height : 80px; margin : 0 20px 20px 0; width : 80px; -webkit- transition : .5s; -moz- transition : .5s; -ms- transition : .5s; -o- transition : .5s; transition : .5s; } ul:hover li { box-shadow: 0 0 15px 5px red; opacity : .25; -webkit- transform : scale(.8); -moz- transform : scale(.8); -ms- transform : scale(.8); -o- transform : scale(.8); transform : scale(.8); } ul li:hover { box-shadow: none; opacity : 1; -webkit- transform : scale(1.2); -moz- transform : scale(1.2); -ms- transform : scale(1.2); -o- transform : scale(1.2); transform : scale(1.2); } </style> </head> < body > < ul > < li > </li> < li > </li> < li > </li> < ...

Loading Animation in css

<!DOCTYPE html> <html> <head> <title>Loading Animation</title> </head> <style type="text/css"> .loader {       width: 60px;       height: 60px;       background: transparent;       border: 10px solid transparent;       border-top-color: #f56;       border-left-color: #f56;       border-radius: 50%;       animation: loader .75s 10 ease forwards;     }     @keyframes loader {       100% {         transform: rotate(360deg);       }     } </style> <body> <div class="loader"></div> </body> </html>

Repeat animation in jQuery

< ! DOCTYPE html > < html > < head > < script type= 'text/javascript' src= 'http://code.jquery.com/jquery-1.9.1.js' > </script> < script type= 'text/javascript' > $(document).ready(function(){ setInterval(callMe,2000); }); function callMe(){ $( "div" ).animate({ left : '250px' }).fadeOut().animate({ left : '0' }).fadeIn(); } </script> </head> < body > < button > Start </button> < br /> < br /> < div style= "background: black; height: 100px; width: 100px; position: absolute;" > </div> </body> </html>

Create Clock in javascript

<HTML> <HEAD> <TITLE> Clock </TITLE> <SCRIPT LANGUAGE="JavaScript"> function dateTime() { var now = new Date(); var result = now.toLocaleString(); var tzOffset=-now.getTimezoneOffset()/60; if(tzOffset<0)     result += " (GMT "+tzOffset+" hours)"; else     result += " (GMT +"+tzOffset+" hours)"; return result; } function tick() { document.forms[0].clock.value=dateTime() setTimeout("tick()",1000) } </SCRIPT> </HEAD> <BODY> <FORM> <INPUT NAME="clock" TYPE="TEXT" SIZE="50" VALUE="&{dateTime()};"> </FORM> <SCRIPT LANGUAGE="JavaScript"> tick(); </SCRIPT> </BODY> </HTML>

Create Cookie Based Page Counter in php

<?php if (!isset($_COOKIE[ 'visits' ])) $_COOKIE[ 'visits' ] = 0; $visits = $_COOKIE[ 'visits' ] + 1; setcookie( 'visits' ,$visits,time()+3600*24*365); ?> <html> <head> <title> Visit Counter</title> </head> <body> <?php if ($visits > 1) { echo( "This is visit number $visits." ); } else { // First visit echo( 'Welcome to my Website! ' ); } ?> </body> </html>

How To Trace Your Facebook Profile Visitors

How To Trace Your Facebook Profile Visitors Now here we found who recently visited your profile. Step 1:             Go your facebook profile page. 2) Now press CTRL + U from your keyboard for see source code of your profile page. 3) Now   Press CTRL + F from your keyboard to open search box . 4) Now search this code    {“activelist”: without quote type 5) You find some Facebook profile ids are like shown below . 6) There are some Facebook   profile Ids of your friends who visited recently. 7) The first one ID’S are showing visits the most number of time . 8) Now if your   want to findout , open a new tab to enter below link :             For example : www.facebook.com/100002051510 Enjoy the trick guys

How to Remove the Recycle Bin from the Desktop

Image
 H ow to Remove the Recycle Bin from the Desktop     If you don't use the Recycle Bin to store deleted files , you can get rid of its desktop icon all together. Run Regedit and go to: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\ Desktop\NameSpace\{645FF040-5081-101B-9F08-00AA002F954E} Click on the "Recycle Bin" string in the right hand pane. Hit Del, click OK. you are not use the recycle bin then you are try to this trick     Note : I have try to this but if any problem then this is not my fault . you have  try at your own risk and if recycle bin deleted then only format option  will be recovered from the recycle bin .

How to set a password with out any app or software in excel, word and power point

Image
In this demo i am set password in excle, word and power point without any software use in windows you can use this tricks from the create password protected files and secure the documents . you can try to this definitely helpful from the secure your documents . Step-1 :      Open the word document of which you get the password Step-2 :     Click to file tab and click to the info option and again click      the protect document button then you are showing to the list . Step-3 :     Now click the encrypt document dialog box then they are      the asking to the password . you are the enter the password      and click ok then they are the asking for the second time      pasword and click the ok button Step-4 :     Now your file is password protected and the save the file      and close this file and open again this file .

Create Skew animation in css

< ! DOCTYPE html > < html > < head > < style type= 'text/css' > .logo { position : relative; width : 200px; height : 90px; margin : 40px auto; } .color-1, .color-2, .text { width : 200px; height : 90px; position : absolute; top : 0; left : 0; opacity : 0.5; } .color-1 { background : orange; animation : my-reverse-skew 2s infinite ease; } .color-2 { background : red; animation : my-skew 2s infinite ease; } .text { color : white; padding - top : 25px; font -size: 40px; opacity : 0.8; z-index: 300; } @keyframes my-skew { 0% { transform : matrix(1, -0.4, 0, 1.02, 0, 0); z-index: 100; } 50%{ transform :matrix(1,0.4,0,1.02,0,0); z-index:200; } 100%{ transform : matrix(1,-0.4,0,1.02,0,0); z-index:100; } } @keyframes my-reverse-skew { 0% { transform : matrix(1, 0.4, 0, 1.02, 0, 0); z-index: 200; } 50%{ transform :matrix(1,-0.4,0,1.02,0,0); z-index:100; ...