Posts

Showing posts with the label Html

Change Css background or text Color When you select a text in website

 <style> ::selection { background-color: #E13300; color: white; } ::-moz-selection { background-color: #E13300; color: white; } </style>

My new Jquery Plugin name is krDailog

Image
This is my new jquery plugin i hope this is use full to you if you require this plugin than contact me  /*     krDailog Version 1.0     Author: krButani     email: butanikartik1108@gmail.com */ Require to use this function     - bootstrap.css new version     - bootstrap.js new version     - jquery.js new version     - jquery-ui.js new version     - glyphicons font by bootstrap # you can use new version of all and also use min file also # include file first this way     <link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">     <link rel="stylesheet" type="text/css" href="css/krDailog.css">     <script type="text/javascript" src="js/jquery.min.js"></script>     <script type="text/javascript" src="js/jquery-ui.min.js"></script> ...

Login Form Design 1

Image
The Code is : <!DOCTYPE html> <html> <head>     <meta charset="UTF-8">     <title>krButani     <style type="text/css">         html,         body {             min-height: 100%;         }         body {                         background: url("../img/1.jpg") left top;             background-size: cover;             background-repeat: no-repeat;         }         .login-design {             margin: 20% 33%;          ...