-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (52 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Bookmark App</title>
<link
href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;500&display=swap"
rel="stylesheet"
media="screen"
/>
<link rel="stylesheet" href="css/bootstrap.css" media="screen" />
<link
rel="shortcut icon"
href="img/favicon.png"
type="image/x-icon"
media="screen"
/>
<link rel="stylesheet" href="css/style.css" media="screen" />
<meta
name="description"
content="This app is not only powerful but it's also the most beautiful looking bookmark manager you will ever use."
/>
<meta
name="keywords"
content="Bookmark Manager, bookmarkapp, bookmark app, bookmark website"
/>
<meta name="author" content="Habibur Rahman" />
</head>
<body>
<div class="overlay"></div>
<div class="floater content">
<form action="" class="bookmark-form">
<div class="floater-top">
<input
type="text"
name="text"
class="form-control"
placeholder="What's on your mind?"
/>
</div>
<div class="floater-bottom">
<button class="btn btn-primary" type="button">
Add
</button>
</div>
</form>
</div>
<div class="bookmarks-list content"></div>
<script src="js/app.js" async></script>
</body>
</html>