-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
68 lines (55 loc) · 2.09 KB
/
main.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
<!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">
<title>linkmark</title>
<!-- CSS only -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="overlay">
<div id="progstat"></div>
<div id="progress"></div>
</div>
<h6>LINKMARK | SAVE YOUR LINKS HERE </h6>
<table class="table table-dark table-striped" style="margin-bottom: 0;">
<thead>
<tr>
<th class="fav-th" scope="col"> <img class="current_favicon favicon" src="icon.png" alt=""></th>
<th scope="col">(Current) <a target="_blank" id="url" href=""></a>
<p class='save-to'>Save to General</p>
</th>
<th style="vertical-align: middle;" scope="col"> <button style="padding: 0; border: 0;" class="btn save"
id="saveBtn"><img src="heart-fill.svg" alt=""></button> </th>
</tr>
</thead>
</table>
<div class="container">
<div class="row">
<div class="col-6">
<button data-key="General" class="btn btn-outline-primary btn-group btn-general">General (<span class="badge badge-general">9</span>)</button>
</div>
<div class="col-6">
<button data-key="Work" class="btn btn-outline-primary btn-group btn-work">Work (<span class="badge badge-work">9</span>)</button>
</div>
</div>
</div>
<table class="table table-dark table-striped">
<tbody class="saved-data">
</tbody>
</table>
<br>
<div class="container footer">
<div class="row">
<div class="col-lg-12">
<h6>Made with 🤍 by <a target="_blank" href="https://kaushikappani.me">kaushik appani</a> </h6>
</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>