-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendar.html
50 lines (31 loc) · 1.26 KB
/
calendar.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
<!doctype html>
<html lang="en">
<head>
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
<script src="https://code.jquery.com/ui/1.11.3/jquery-ui.js" integrity="sha256-0vBSIAi/8FxkNOSKyPEfdGQzFDak1dlqFKBYqBp1yC4=" crossorigin="anonymous"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Unicorn Hub</title>
<link href="https://fonts.googleapis.com/css?family=Dosis:400,700&effect=neon" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<link href="calendar.css" rel="stylesheet">
</head>
<body>
<div id="root">
<h2> Unicorn Hub </h2>
<div class="topnav">
<a class="all-girl-groups" href="all-girl-groups.html">List of All Girl Groups</a>
<a class="kpop-news" href="kpop-news.html">News</a>
<a class="explore" href="explore.html">Explore</a>
<div class="search ui-widget">
<button type="button" id="searchButton" onClick="myfunction()">
<i class="fa fa-search"></i>
</button>
<input type="text" id="searchTerm" placeholder="Search...">
</div>
</div>
</div>
<script src="autocomplete.js"></script>
<script src="script.js"></script>
</body>
</html>