-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
45 lines (44 loc) · 1.79 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Save all your links!</title>
<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>
<video src="tree.mp4" class ="video-background" loop muted autoplay></video>
<div class="video-overlay"></div>
<!-- Open Modal -->
<h2 id="show-modal"><i class="fas fa-plus"></i>New Link</h2>
<!-- 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-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 class="form-label" for="website-name">Website Name</label>
<input class="form-input" type="text" id="website-name" autocomplete="off">
</div>
<!-- Website URL -->
<div class="form-group">
<label class="form-label" for="website-url">Website URL</label>
<input class="form-input" type="text" id="website-url" autocomplete="off">
</div>
<button type="submit">Save</button>
</form>
</div>
</div>
</div>
<!-- Script -->
<script src="script.js"></script>
</body>
</html>