-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (79 loc) · 3.59 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dinosaur Advent Calendar</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel = "stylesheet" href= "./style.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js"></script>
</head>
<body>
<div class="container">
<h1>Dinosaur Advent Calendar</h1>
<h6>Click on each day to reveal fun fact about dinosaurs!<br>
Today's Date is highlighted. Missed yesterdays? or the day before? No problem! Just click on it to see it. <br>
No skipping ahead allowed(sorry!)</h6>
<br>
<h2></h2>
<table class="table">
<thead>
<tr>
<th scope="col">Sunday</th>
<th scope="col">Monday</th>
<th scope="col">Tuesday</th>
<th scope="col">Wednesday</th>
<th scope="col">Thursday</th>
<th scope="col">Friday</th>
<th scope="col">Saturday</th>
</tr>
</thead>
<tbody>
<tr class = rowDays id="numberDays"></tr>
<tr class = rowDays id="numberDays2"></tr>
<tr class = rowDays id="numberDays3"></tr>
<tr class = rowDays id="numberDays4"></tr>
<tr class = rowDays id="numberDays5"></tr>
</tbody>
</table>
<br>
<!--modals-->
<div class="modal msgModal" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<!-- <h5 class="modal-title"> Fact For the Day!</h5> -->
<h5 class="modal-title"></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<p class="dinoFactHolder"></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
<footer>
<p> HUGE thank you the following websites to obtain all the fun facts about dinosaurs. Check them out!</p>
<ul>
<li><a class ="linkText" href="https://www.kids-dinosaurs.com/">kids-dinosaurs</a></li>
<li><a class ="linkText" href="https://www.thedinosaurmuseum.com/dino-facts">The Dinosaur Museum</a></li>
<li><a class ="linkText" href="https://www.scholastic.com/teachers/activities/teaching-content/build-dinosaur/">Scholastic</a></li>
<li><a class ="linkText" href="www.discovery.com/science/First-Dinosaur-Fossil-Name">Discovery</a></li>
<li>Wikipedia for the images</li>
<li>Unsplash for the background image</li>
</ul>
<span id="contactMe">Contact me: <a href = "mailto: [email protected]">Email me</a> ||
Check out the <a href="https://github.com/mhvue/dinosaurAdventCalendar.git">Repository</a> in Github!</span>
</footer>
<script src = "./app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
</body>
</html>