Preview:
<script language="JavaScript">
<!--
var today = new Date ( );

var days = new Array ( );
days[days.length] = "יום ראשון";
days[days.length] = "יום שני";
days[days.length] = "יום שלישי";
days[days.length] = "יום רביעי";
days[days.length] = "יום חמישי";
days[days.length] = "יום שישי";
days[days.length] = "יום שבת";

var months = new Array ( );
months[months.length] = "ינואר";
months[months.length] = "פברואר";
months[months.length] = "מרץ";
months[months.length] = "אפריל";
months[months.length] = "מאי";
months[months.length] = "יוני";
months[months.length] = "יולי";
months[months.length] = "אוגוסט";
months[months.length] = "ספטמבר";
months[months.length] = "אוקטובר";
months[months.length] = "נובמבר";
months[months.length] = "דצמבר";

document.write ( days[today.getDay()] );
document.write ( ", " );
document.write ( " " + today.getDate() );
document.write ( " ל" );
document.write ( months[today.getMonth()] );
document.write ( " שנת " );
document.write ( " " + today.getFullYear() );
// -->
</script>
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter