Demo of Date Picker with different Themes : smoothness



CDN:
https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css
https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css

Theme : smoothness

HTML

Date: <input type="text" id="date_picker">

JQuery


<script>
$(document).ready(function() {
//////////////////////////
$(function() {
    $( "#date_picker" ).datepicker({
dateFormat: 'dd-mm-yy'
});
});
////////////////
})
</script>