Posts

Showing posts from September, 2015

A Simple Game in Javascript

                                     A Simple Game in Javascript  A week ago i thought about to take a revision of my Javascript skills ,so i planned to make some useful applications in Javascript. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 <html> <title> Rocket Game </title> <head> <style type= "text/css" > html {} img #obstacle { position : absolute ; margin-left : 0px ; margin-top : 0px ;} </style> </head> <body id= "body" style= "opacity:0" onload= "show()" ...

Creating App USing REST APIS

                                          Creating App USing REST APIS  <?php session_start(); ?> <html><head> <title>Hitesh Saini's DownloadBook</title> <meta name="description" content="Download free it ebooks, download free information technology books, download free ebooks" /> <meta name="keywords" content="hitesh saini website,free it ebooks,hitesh saini from bharatpur,download ebooks,download free ebooks" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <style type="text/css"> #head{width:800px;height:100px;border:1px solid blue;border:2px solid grey;} #left_head{float:left;width:400px;} #right_head{font-family:sans-serif;float:right;width:400px;} input.ex{z-index:1;font:sans-serif;width:300px; height:42px;font-size:25px;background:rgba(100,20,100,0.4); border:2px solid blue; border-col...