-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (35 loc) · 1.49 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
<html>
<head>
<title>BookmarkWidget by Dafin</title>
<meta name="subject" content="Building a cool thingamijig whilst learning javascript">
<meta name="description" content="Dafins Bokmark Widget thingy">
<meta name="twitter:creator" content="@Dafin">
<meta property="og:image" content="https://avatars1.githubusercontent.com/u/2958639?v=3&s=460">
<meta name="og:site_name" content="Bookmark Widget"/>
<meta name="og:description" content="A Rudimentary Bookmark Manager"/>
<link href="./styles/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<div class="row col">
<h1> BookmarkWidget <span id="tagline">beta</span></h1>
</div>
<div class="col inputbox">
<input placeholder="Drag or type here " id="inputHere" type="text" >
<button onclick="clickAdd()" id="addButton"> + Add</button>
<button id="saveButton" onclick="clickSave()" disabled="true"> Save </button>
</div>
<div class="col listing">
<ul class="TheList">
</ul>
</div>
<div class="col info">
<h3>What is this? </h3>
<p>A simple open source gadget to create (and soon edit & save) lists and list items.</p><p>The instructions on how to build and use are <a href="https://github.com/Dafin/BookmarkWidget/blob/master/README.md">here</a>.</p>
</div>
</div>
<script src="./js/jquery-3.2.1.min.js"></script>
<script src="./js/script.js"></script>
<script src="./js/jquery-ui.js"></script>
</body>
</html>