Skip to main content

Posts

Showing posts from July, 2012

website or html redirect

There are number of ways to do this here i am sharing some of them Method 1:  <html lang="en"> <head>     <title>Document Title</title>     <meta http-equiv="REFRESH" content="0;url=http://lokeshchadha.com/"></head> <body> </body> </html> Method 2:  Anywhere in the body tag paste the following script <script type="text/javascript">window.location = "http://lokeshchadha.com/"</script>

100% Full Screen IFRAME

<!DOCTYPE html> <html lang= "en" > <head> <meta http-equiv= "Content-Type" content= "text/html; charset=utf-8" /> <title> Lokesh chadha </title> <style type= "text/css" > html { overflow : auto ; } html , body , div , iframe { margin : 0px ; padding : 0px ; height : 100 % ; border : none ; } iframe { display : block ; width : 100 % ; border : none ; overflow-y : auto ; overflow-x : hidden ; } </style> </head> <body> <iframe id= "tree" name= "myiframe" src= "https://www.google.com/" width= "100%" height= "100%" ></iframe> </body> </html>