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..
click here for the code
have fun..
<!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>
