-
Notifications
You must be signed in to change notification settings - Fork 20
/
book.html
93 lines (86 loc) · 4.05 KB
/
book.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://kit.fontawesome.com/3d331bee7e.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="style2.css">
<title>Knowledgeshare</title>
</head>
<body>
<div class="switch">Dark mode:
<span class="inner-switch" >OFF</span>
</div>
<div class="container mt-4">
<h1 class="display-4 text-center">
<i class="fas fa-share-square text-primary"></i> <span class="text-primary">Knowledge</span>Share</h1>
<form id="book-form">
<div class="form-group">
<input type="text" id="title" class="form-control" autocomplete="off" placeholder=" ">
<label for="title" class = "label-name">
<span class="content-name">Title</span>
</label>
</div>
<div class="form-group">
<input type="text" id="author" class="form-control" autocomplete="off" placeholder=" ">
<label for="author" class = "label-name" >
<span class="content-name">Name</span>
</label>
</div>
<div class="form-group">
<input type="url" id="resource" class="form-control" autocomplete="off" placeholder=" ">
<label for="resource" class = "label-name">
<span class="content-name">AddLink</span>
</label>
</div>
<div class="form-group">
<input type="date" id="date" class="form-control" autocomplete="off" placeholder=" " >
<label for="date" class = "label-name">
<span class="content-name">Date</span>
</label>
</div>
<button class="btn btn-primary btn-block" >Add </button>
</form>
<button class="btn btn-primary btn-block" onclick="clearlist()" >Clear List </button>
<table class="table table-stripped mt-5">
<thead>
<tr>
<th>Title</th>
<th>Author</th>
<th>Links</th>
<th>Date</th>
<th></th>
</tr>
</thead>
<tbody id="resource-list">
</tbody>
</table>
</div>
<script src="book.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="script.js"></script>
<footer class="footer-distributed">
<div class="footer-left">
<p class="footer-links">
<button onclick="document.location='https://github.com/tejaswini22199/KnowledgeShare/network/members'"class="button2" style="height:30px; width:90px"><img src="https://img.shields.io/github/forks/tejaswini22199/KnowledgeShare" height= "100%"; width="100%"></img></button>
</p>
<p class="footer-links">
<button onclick="document.location='https://github.com/tejaswini22199/KnowledgeShare/stargazers'"class="button2"style="height:30px; width:90px"><img src="https://img.shields.io/github/stars/tejaswini22199/KnowledgeShare" height= "100%"; width="100%"></img></button>
</p>
</div>
<div class="footer-center">
<div>
<h4>Admin</h4>
<a href="https://github.com/tejaswini22199"><i class="fa fa-github"></i></a>
</div>
</div>
<div class="footer-right">
<b><h4>Contributors Of Repository </h4></b>
</br>
<button onclick="document.location='https://github.com/tejaswini22199/KnowledgeShare/graphs/contributors'"class="button2"style="height:30px; width:120px"><img src="https://img.shields.io/github/contributors-anon/tejaswini22199/KnowledgeShare" height= "100%"; width="100%"></img></button>
</div>
</footer>
</body>
</html>