- <head>
- <style>
- .black {
- background-color:#111111;
- color:silver;
- }
- </style>
- </head>
- <body>
- <form id="black">
- <label for="name">Your Name:*</label>
- <input id="name" name="name" type="text" placeholder="Bob" title="Your name is required." required />
- </form>
- <script>
- $(document).ready(function () {
- $('#black').h5Validate({
- errorClass:'black'
- });
- });
- </script>
- </body>