-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (55 loc) · 2.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Assignment 7</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/icons-all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header class="my-4">
<div class="container">
<h1 class="text-center display-4 mb-4 text-white">Bookmarker</h1>
</div>
</header>
<!-- end of Header -->
<section id="details">
<div class="container">
<div class="box text-center mx-3">
<h3 class="pt-3">Bookmark your favorite sites</h3>
<div class="form w-75 mx-auto mb-3">
<!-- site name section -->
<label for="SiteName" class="mt-4 font-weight-bold">Site Name</label>
<input type="text" class="form-control form-control-sm" placeholder="Enter Site Name" id="SiteName">
<!-- site url section -->
<label for="SiteURL" class="mt-4 font-weight-bold">Site URL</label>
<input type="text" class="form-control form-control-sm" placeholder="Enter Site Link" id="SiteURL">
<div class="mt-2">
<p class="text-danger text-center lead" id="warningArea"></p>
</div>
<button class="btn btn-primary my-3" onclick="validate()">Add Link <i class="fas fa-link fa-s"></i></button>
</div>
</div>
</div>
</section>
<!-- end of #details Section -->
<section id="listt">
<div class="container">
<div class="link-list">
<div class="content py-3">
<div class="d-flex flex-column contentbg my-3" id="tableView">
</div>
</div>
</div>
</div>
</section>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery-slim.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>
<!-- JS add -->
<script src="js/main.js"></script>
</body>
</html>