-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (41 loc) · 1.16 KB
/
index.html
File metadata and controls
43 lines (41 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Bookmarker</title>
<meta name="Mitul Shah" content="Bookmark your favourite websites!"/>
<link rel="stylesheet" type="text/css" href="/styles/style.css">
</head>
<body onload="fetchBookmarks()">
<div class="container">
<section id="title">
<h1>Bookmarker</h1>
<hr>
</section>
<section id="widget">
<h2>Bookmark your favourite site!</h2>
<form id="myForm">
<div class="form-group">
<label>Website Name</label>
<input type="text" class="form-control" placeholder="Website Name" id="siteName">
</div>
<div class="form-group">
<label>Website URL</label>
<input type="text" class="form-control" placeholder="Website URL" id="siteURL">
</div>
<button type="submit" class="btn">Submit</button>
</form>
</section>
<section id="content">
<div id="results">
</div>
</section>
<footer id="footer">
<hr>
<p> Built by <a href="https://github.com/mitul-s"><b>Mitul Shah</b></a> 😎</p>
</footer>
</div>
<script src="script.js" type="text/javascript"></script>
</body>
</html>