-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (88 loc) · 4.09 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pacifico&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.2/css/all.min.css"
integrity="sha512-z3gLpd7yknf1YoNbCzqRKc4qyor8gaKU1qmn+CShxbuBusANI9QpRohGBreCFkKxLhei6S9CQXFEbbKuqLg0DA=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Righteous&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<title>Document</title>
</head>
<body>
<div class="section py-5">
<div class="container d-flex flex-column justify-content-center align-items-center">
<div class="title py-2 position-relative">
<h1 class="text-center">Bookmarker</h1>
</div>
<div class="sec-title py-3">
<h2>
<i class="fa-solid fa-bookmark"></i>
Bookmark your favorite sites
<i class="fa-solid fa-bookmark"></i>
</h2>
<div class="site py-3 w-100 d-flex flex-column justify-content-center">
<label for="bookmarkName" class="pb-2 fw-semibold">
<i class="fa-solid fa-book-bookmark pe-2"></i>
Site Name</label>
<input type="text" placeholder="Site Name" class="form-control" id="siteNameInput">
</div>
<div class="link py-3 w-100 d-flex flex-column justify-content-center">
<label for="bookmarkURL" class="pb-2 fw-semibold">
<i class="fa-solid fa-link pe-2"></i>Site URL</label>
<input type="url" placeholder="Site URL" class="form-control" id="siteUrlInput">
</div>
<div class="button-sub text-center py-3 "> <button class="btn btn-submit px-5 " id="submitBtn"
onclick="addSite();">Submit</button>
</div>
</div>
<table class="table mt-4 text-center bg-light py-3" id="siteTable">
<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 class="box-info position-absolute start-0 top-0 w-100 h-100 d-flex justify-content-center align-items-center ">
<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> -->
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>