-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (43 loc) · 1.44 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
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>BookMark</title>
<link rel="stylesheet" href="styles/normalize.css">
<link rel=" stylesheet" href="styles/all.min.css">
<!-- render all elements -->
<link rel=" stylesheet" href="styles\styles.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<!-- <link
href="https://fonts.google.com/specimen/Cairo?preview.text=New%20Quot&preview.text_type=custom"
rel="stylesheet"> -->
<!-- render all elements -->
</head>
<body >
<!-- overlay -->
<button class="add-bookmark-btn">ADD BOOKMARk</button>
<div class="add-bookmark hide">
<div class="nav">
<h1>Add BookMark</h1>
<i class="fa-solid fa-xmark"></i>
</div>
<!-- websiteName -->
<form >
<label for="title" value="Title">Website Name</label>
<input id="title" type="text" >
<!-- url -->
<label for="url">Website URL</label>
<input id="url" type="text" >
<button class="save" type="submit">Save</button>
</form>
</div>
<!-- bookmarks on screen -->
<div class="bookmarks">
</div>
</body>
<script src="main.js"></script>
</html>