-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathavailableFunding.html
61 lines (50 loc) · 3.31 KB
/
availableFunding.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/main.css" />
<meta name="description" content="Fund Seeker, A web app to find and give funds">
<meta name="keywords" content="Funds Track,Fund,Seeker,Sponsor">
<meta name="author" content="Samad alias Nyein Chan">
<meta name="robots" content="index, nofollow" />
<!-- JQuery JavaScript -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<!-- Personal Scripts -->
<title>Fund Organizer</title>
</head>
<body>
<div id="header"></div>
<div style="display: flex;padding:10px">
<!-- Name -->
<select id="filter-field" class=" browser-default custom-select" style="width:100px;">
<option value="Name">Name</option>
<option value="Website">Website</option>
<option value="Tags">Tags</option>
<option value="Description">Description</option>
</select>
<input type="text" id="filter-value" name="fname" placeholder="Search" style="margin-left: 10px;">
<button id="download-csv" type="button" class="btn btn-primary" style="margin-left: auto;">Download CSV</button>
<button id="download-json" type="button" class="btn btn-primary"style="margin-left: 10px;">Download JSON</button>
<button id="download-pdf" type="button" class="btn btn-primary"style="margin-left: 10px;">Download PDF</button>
</div>
<div id="funding-table" style="margin:auto;"></div>
<div id="footer"></div>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<!-- Tabulator -->
<!-- <link href="https://unpkg.com/tabulator-tables@4.4.3/dist/css/tabulator.min.css" rel="stylesheet"> -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/tabulator/4.4.3/css/bootstrap/tabulator_bootstrap4.min.css" rel="stylesheet">
<script type="text/javascript" src="https://unpkg.com/tabulator-tables@4.4.3/dist/js/tabulator.min.js"></script>
<!-- Popper.js, then Bootstrap JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.3.5/jspdf.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/3.0.5/jspdf.plugin.autotable.js"></script>
<script src="javascript/tables/funding.js"></script>
<script src="javascript/scripts.js"></script>
</body>
</html>