-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
79 lines (78 loc) · 3.18 KB
/
index.html
File metadata and controls
79 lines (78 loc) · 3.18 KB
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
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<main class="position-relative py-5 interface">
<div class="container d-flex flex-column justify-content-center align-items-center">
<h1 class="py-2 position-relative">Bookmarker</h1>
<div class="d-flex bookmark-body w-100 p-3 py-4 mt-5 flex-column justify-content-center align-items-center gap-4">
<h2>
<i class="fa-solid fa-bookmark"></i>
Bookmark your favorite sites
<i class="fa-solid fa-bookmark"></i>
</h2>
<div class="site-name d-flex w-100 flex-column justify-content-center">
<label for="bockmarkName" class="pb-2 ">
<i class="fa-solid fa-book-bookmark pe-2" ></i>
Site Name
</label>
<input type="text" placeholder="Bookmark Name" class="form-control" id="bockmarkName">
</div>
<div class="site-url d-flex w-100 flex-column justify-content-center">
<label for="bockmarkURL" class="pb-2 fw-semibold ">
<i class="fa-solid fa-link pe-2"></i>
Site URL
</label>
<input type="url" placeholder="website URL" class="form-control" id="bockmarkURL">
</div>
<button class="btn-submit btn px-5" id="submitBtn">Submit</button>
</div>
<table class="table mt-4 text-center bg-light">
<thead><tr>
<th class="text-capitalize">index</th>
<th class="text-capitalize">website name</th>
<th class="text-capitalize">visit</th>
<th class="text-capitalize">delete</th>
</tr></thead>
<tbody id="tableContent">
</tbody>
</table>
</div>
<div class="box-info position-absolute start-0 top-0 w-100 h-100 d-flex justify-content-center align-items-center d-none">
<div class="box-conent bg-white p-4 rounded-2 shadow-lg">
<header class="box-header w-100 d-flex justify-content-between align-items-center mb-4">
<div class="circles d-flex">
<span class="rounded-circle me-2"></span>
<span class="rounded-circle me-2"></span>
<span class="rounded-circle me-2"></span>
</div>
<button class="btn border-0" id="closeBtn">
<i class="fa-solid fa-xmark close fs-3"></i>
</button>
</header>
<p class="m-0 pb-2">
Site Name or Url is not valid, Please follow the rules below :
</p>
<ol class="rules list-unstyled m-0">
<li>
<i class="fa-regular fa-circle-right p-2"></i>Site name must
contain at least 3 characters
</li>
<li>
<i class="fa-regular fa-circle-right p-2"></i>Site URL must be a
valid one
</li>
</ol>
</div>
</div>
</main>
<script src="js/index.js"></script>
</body>
</html>