-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcalendar.html
More file actions
36 lines (33 loc) · 843 Bytes
/
Copy pathcalendar.html
File metadata and controls
36 lines (33 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<html>
<head>
<script src="calendar.js"></script>
<link rel="stylesheet" href="calendar.css">
<title>Calendar</title>
</head>
<body onload="createDays()">
<div id="calendar">
<div id="week_days">
<div>ראשון</div><div>שני</div><div>שלישי</div><div>רביעי</div><div>חמישי</div><div>שישי</div><div>שבת</div>
</div>
<div id="days">
<div class="day">
<span class="number">1</span>
<span class="month">ביולי</span>
</div>
</div>
</div>
<div id="modal">
<div class="modal-content">
<span onclick="closeModal()" id="close">X</span>
<!-- This is a template-->
<div class="event">
<span class="time"></span>
<span class="description"></span>
</div>
<!-- End of template-->
<div id="events">
</div>
</div>
</div>
</body>
</html>