-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 1.8 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
<!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> Bookmark App </title>
<link rel="icon" href="Images/icon.png" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<!-- Main style -->
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<!-- Open Modal -->
<h1 id="show-modal">Add Bookmark</h1>
<!-- Bookmarks Container -->
<div class="container" id="bookmarks-container"></div>
<!-- Modal -->
<div class="modal-container" id="modal">
<div class="modal">
<i class="fas fa-times close-icon" id="close-model"></i>
<div class="modal-header">
<h3>Add Bookmark</h3>
</div>
<div class="modal-content">
<form id="bookmark-form">
<!-- website Name -->
<div class="from-group">
<label for="website-name" class="form-label">Website Name</label>
<input type="text" class="form-input" id="website-name" />
</div>
<!-- website URL -->
<div class="from-group">
<label for="website-url" class="form-label">Website URL</label>
<input type="text" class="form-input" id="website-url" />
</div>
<button type="submit"> Save </button>
</form>
</div>
</div>
</div>
<!-- Script connection -->
<script src="js/script.js"></script>
</body>
</html>