-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (48 loc) · 2.03 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bookmark+</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/4.2.0/normalize.min.css">
<link href="https://fonts.googleapis.com/css?family=Nunito:700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<div class="container">
<div class="error-container"></div>
<img src="main.png">
<div class="main-div">
<button id="showhide" type="submit"></button>
<br>
<span>Minimum Rating:</span>
<input name="min-rating" type="number" placeholder="1-5" min="1" max="5" />
</div>
<form id="bookmark-form">
<label for="title">Title of your Bookmark:
<input name="title" type="text" required />
</label>
<br />
<label for="url">URL:
<input name="url" type="text" placeholder="must include http://" required pattern="http://" />
</label>
<br />
<label for="desc">Bookmark Description:
<input name="desc" type="text" required />
</label>
<br />
<label for="rating">Rating:</label>
<input name="rating" type="number" placeholder="1-5" min="1" max="5" required />
<br>
<input type="submit">
</form>
<ul class="bookmark-list">
</ul>
</div>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/cuid/1.3.8/browser-cuid.min.js"></script>
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="scripts/api.js"></script>
<script type="text/javascript" src="scripts/store.js"></script>
<script type="text/javascript" src="scripts/bookmarkList.js"></script>
<script type="text/javascript" src="scripts/index.js"></script>
</body>
</html>