-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (24 loc) · 870 Bytes
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>Calendar</title>
<script type = "text/javascript" src = "script.js"></script> <!-- linking javascript-->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <!-- linking jQuery-->
<link rel="stylesheet" type = "text/css" href = "style.css"> <!--linking css-->
</head>
<body>
<h1><strong>What is today's date?</strong></h1>
<div id = "calendar">
<p id = "calendarDay"></p>
<p id = "calendarDate"></p>
<p id = "calendarMonthYear"></p>
</div>
<div class="bDay">
<button type = "button" onclick="celebBirthday()">Any famous birthdays today?</button>
<p id = "celebName"></p>
</div>
<div class="history">
<button type = "button" onclick="history()">What happened on this day?</button>
</div>
</body>
</html>