-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bookmark App</title>
<link rel="icon" href="favicon.ico" type="image/x-icon"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.10.2/css/all.min.css"/>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Open modal -->
<h1 id="show-modal">Add Bookmark</h1>
<!-- Bookmarks -->
<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-modal"></i>
<div class="modal-header">
<h3>Add Bookmark</h3>
</div>
<div class="modal-content">
<form id="bookmark-form">
<!-- Website name -->
<div class="form-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="form-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 -->
<script src="script.js"></script>
</body>
</html>