-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBookmark.html
53 lines (46 loc) · 1 KB
/
Bookmark.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
<!DOCTYPE html>
<html>
<head>
<title>My Bookmarks</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
}
h1 {
text-align: center;
color: #333;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
padding: 10px;
border-bottom: 1px solid #ccc;
}
a {
color: #333;
text-decoration: none;
}
a:hover {
color: #000;
text-decoration: underline;
}
</style>
</head>
<body>
<h1>My Bookmarks</h1>
<h2>Category 1</h2>
<ul>
<li><a href="https://www.google.com/">Google</a></li>
<li><a href="https://www.github.com/">Github</a></li>
</ul>
<h2>Category 2</h2>
<ul>
<li><a href="https://www.stackoverflow.com/">Stack Overflow</a></li>
<li><a href="https://www.w3schools.com/">W3Schools</a></li>
</ul>
</body>
</html>