-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (79 loc) · 3.34 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bookmark</title>
<link rel="shortcut icon" href="img/logo book.png" type="image/x-icon">
<!-- Icons font aswsome -->
<link rel="stylesheet" href="css/all.min.css">
<!-- google fonts -->
<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=Fredericka+the+Great&family=Ga+Maamli&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">
<!-- css -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body style="background-color: #262626;">
<main>
<section>
<!-- /*header */ -->
<div class="text-center">
<h1 class="text pt-5 ">
<span style="--i: 1">B</span>
<span style="--i: 2">O</span>
<span style="--i: 3">O</span>
<span style="--i: 4">K</span>
<span style="--i: 5">M</span>
<span style="--i: 6">A</span>
<span style="--i: 7">R</span>
<span style="--i: 8">K</span>
<span style="--i: 9">E</span>
<span style="--i: 10">R</span>
</h1>
<h2 style="color: #ffcfde;" class="pt-5 "> Bookmark your favorite sites <i class="fa-brands fa-gratipay"></i></h2>
</div>
<!-- /* end-header */ -->
<!-- /* form */ -->
<div class="container">
<div class="mt-4 m-auto" style="color:#ffcfde;">
<div class="mb-3">
<label for="InputName" class="form-label fs-5 "><span class="px-2"><i class="fa-solid fa-book-bookmark"></i></span>Site Name</label>
<input type="text" class="form-control" id="InputName" placeholder="Bookmark Name">
</div>
<div class="mb-3">
<label for="InputLink" class="form-label fs-5"><span class="px-2"><i class="fa-solid fa-link"></i></span>Site URL</label>
<input type="text" class="form-control" id="InputLink" placeholder="Website URL">
</div>
<div class="buttonOne mt-5 text-center"><button type="button" class="btn w-25" onclick="addBookmarker()" id="addButtonOne">Add Bookmark</button></div>
<div class="buttonOne mt-5 text-center"><button type="button" class="btn w-50 d-none" onclick="updateBookmarker()" id="updateButton">Update Bookmark</button></div>
</div>
</div>
<!-- /* end-form */ -->
</section>
<!-- /* table */ -->
<section>
<div class="container">
<table class="table mt-5 text-center ">
<thead>
<tr>
<th>Index</th>
<th>Website Name</th>
<th>Visit</th>
<th>Update</th>
<th>Delete</th>
</tr>
</thead>
<tbody id="partTable">
</tbody>
</table>
</div>
</section>
<!-- /* end table */ -->
</main>
<script src="js/all.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>