Thursday, June 26, 2014

A responsive login form using HTML5 and CSS3

Hii,This is a login form designed using HTML5 and CSS3.You can go to below link and check out the sample code and you can work on that by applying different styles. 



click here for the code

have fun..

Monday, June 23, 2014

Hii
Like our official facebook page




Go to our facebook page 

How to create a simple navigation bar using css and html


Hi,You can go to below link and check out the sample code and you can work 
on that by applying different styles. 

click here

enjoy...

Wednesday, June 11, 2014

How to use drag and drop in a webpage using HTML and JS

HTML5 is the latest  version of HTML it has capability to deliver rich internet applications without using any additional plugins.So we can make hi-end web applications using HTML5.HTML5 is cross-platform so that work with different devices.

This tutorial will teach you how to use drag and drop feature of HTML5 to drag an object (say image) from one place to other in a web page.


Step 1:#createfile

Create the html file.

Open notepad and type the codes as given below:


<!DOCTYPE HTML>
<html>
<head>
<style>
p {font-family: "Times New Roman";font-size: 20px;}
#divbox {width:350px;height:70px;padding:10px;border:5px solid #aaaaaa;}
</style>
<script>
function DropPermission(ev) {
    ev.preventDefault();
}

function drag(ev) {
    ev.dataTransfer.setData("Text", ev.target.id);
}

function drop(ev) {
    ev.preventDefault();
    var data = ev.dataTransfer.getData("Text");
    ev.target.appendChild(document.getElementById(data));
}
</script>
</head>
<body>

<p>Drag the helloworld image into the rectangle:</p>

<div id="divbox" ondrop="drop(event)" ondragover="DropPermission(event)"></div>
<br>
<img id="drag1" src="hello.jpg" draggable="true" ondragstart="drag(event)" width="336" height="69">

</body>
</html>

Step 2:#save

Save your notepad file in .html format

Step  3:#execution

Note:HTML5 doesn’t support older browsers.Execute this file in any latest browsers.I here use Google Chrome.

You can see the output as given below




Thursday, May 29, 2014

How to see your current location in Google map using HTML 5

HTML 5 is the latest  version of HTML it has capability to deliver rich internet applications without using any additional plugins.So we can make hi-end web applications using HTML 5. HTML 5 is cross-platform so that work with different devices.


This tutorial will teach you how to use geolocation feature in HTML 5 to get your current location on Google map.

Step 1:#createfile

create the html file.

Open notepad and type the codes as given below:


#source code:

Wednesday, May 28, 2014

How to create image border using HTML5 and CSS3

We can use images as borders in our html page so that borders can be more attractive


Check out my #experiments:

Step 1:#create file

create the html file with CSS3 style specification.


Note:CSS3 is the latest addition and the CSS3 specification is still under development by w3c. It supports all modern browsers but u can get compatibility issues in IE and older versions of other browsers.I use Google chrome.so,I recommend to try this on Google chrome.



Open notepad and type the codes as given below:






 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
<!DOCTYPE html>
<html>
<head>
<style> 
div
{
border:15px solid transparent;
width:250px;
padding:10px 20px;
}

#tiles
{

border-image:url(img.png) 30 30 round;<!--insert your image url here -->
}

#stretch
{

border-image:url(img.png) 20 0 stretch;<!--insert your image url here -->
}
</style>
</head>
<body>
<div id="tiles">the image is tiled</div>
<br>
<div id="stretch">the image is stretched</div>
<p>original image:</p>
<img src="img.png"><!--insert your image url here -->
</body>
</html>



Tuesday, May 27, 2014

How to create matrix like effect using batch programming

Every one might have wondered about the cool green animation on matrix movie. Let’s try to generate an emulation of matrix effect using batch file programming.

Step 1:create batch file
Open notepad

Type the following code as you see in screen shot:

How to configure Google application engine on eclipse

Google application engine is a cloud computing platform where we can develop and host web applications.

If you are a platform specific developer and your desired platform is java obviously you will use eclipse as your IDE. Eclipse is just awesome. You can have different development environment and can add additional plugins. You can add Google app engine plugin to your eclipse so that you can host your projects on Google data center and you can use lot of Google services. I recommend you to use eclipse 4.3 kepler because there is chance for errors if you use lower versions (well I have got one).In this tutorial I am gonna explain you how to install and configure Google app engine.

Step  1:Get eclipse

You can use the below link to get in to eclipse kepler download page and you can download the desired version based on your system architecture