forked from LunarMarathon/graphToTable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (64 loc) · 3.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- HTML Meta Tags -->
<title>Graph to Table</title>
<meta name="description" content="undefined">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://graphtotable.netlify.app/">
<meta property="og:type" content="website">
<meta property="og:title" content="Graph to Table">
<meta property="og:description" content="">
<meta property="og:image" content="https://graphtotable.netlify.app/images/ogImg.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta property="twitter:domain" content="graphtotable.netlify.app">
<meta property="twitter:url" content="https://graphtotable.netlify.app/">
<meta name="twitter:title" content="Graph to Table">
<meta name="twitter:description" content="">
<meta name="twitter:image" content="https://graphtotable.netlify.app/images/ogImg.png">
<link rel="icon" type="image/x-icon" href="images/table_icon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="index.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://kit.fontawesome.com/afd4daee31.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="nav">
<div></div>
<h1>GRAPH TO TABLE</h1>
<div class="toggleContainer">
<button class="light-mode-button" aria-label="Toggle Light Mode" onclick="toggle_light_mode()">
<span></span>
<span></span>
</button>
</div>
</div>
<div class="outerInputDiv">
<div class="inputCont autocomplete">
<input id="input1" type="text" placeholder="key/node1">
</div>
<div class="inputCont autocomplete">
<input id="input2" type="text" placeholder="link/node2">
</div>
</div>
<div class="inputText">
<button id="clearText" class="btn" onclick="clearText()">Clear text!</button>
<button class="clearBtn btn" onclick="clearTable()">Clear screen!</button>
<button type="submit" class="readBtn btn" onclick="createTable()">Generate table!</button>
<button type="submit" class="readBtn btn" onclick="searchTable()">Search table!</button>
<button id="downloadBtn" class="readBtn btn" onclick="downloadFunc()">Download CSV!</button>
<button type="submit" class="readBtn btn" onclick="sortTableMin()">Sort by min nodes!</button>
<button type="submit" class="readBtn btn" onclick="sortTableMax()">Sort by max nodes!</button>
</div>
<!-- Scroll-to-top button -->
<div id="container"></div>
<a href="#" class="goTo-top-btn">
<i class="fas fa-chevron-up"></i>
</a>
<script src="index.js"></script>
</body>
</html>