-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (59 loc) · 2.62 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
<!DOCTYPE html>
<html lang="de">
<head>
<title>Mark Bookmarks</title>
<!--Import Google Icon Font-->
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!--Import materialize.css-->
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="bookmark.css"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<!--Import jQuery before materialize.js-->
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="js/materialize.min.js"></script>
<script type="text/javascript" src="bookmark.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<div class="container">
<!-- Page Content goes here -->
<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<input id="name" type="text" class="validate">
<label for="name">Name</label>
</div>
<div class="input-field col s6">
<input id="bookmark" type="text" class="validate">
<label for="bookmark">Bookmark</label>
</div>
</div>
</form>
<div id="saveSection" class="col s6">
<a id="save" class="waves-effect waves-light btn">Save</a>
<form action="#">
<p>
<input name="group1" type="radio" id="normal" checked/>
<label for="normal">Normal</label>
</p>
<p>
<input name="group1" type="radio" id="important" />
<label for="important">Important</label>
</p>
</form>
</div>
<div class="col s6">
<a id="remove" class="waves-effect waves-light btn red darken-3">remove</a>
</div>
</div>
<div>
<h1>Important Bookmarks</h1>
<div id="importantID"></div>
</div>
<h1>Normal Bookmarks</h1>
<div id="normalID"></div>
</div>
</body>
</html>