-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBookmark.html
More file actions
21 lines (21 loc) · 927 Bytes
/
Bookmark.html
File metadata and controls
21 lines (21 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My Bookmark Website</title>
</head>
<body>
<h1>My Bookmarks</h1>
<h2>Primary Bookmark</h2>
<p><a target="_blank" href="https://www.google.com/">Google</a></p>
<p><a target="_blank" href="https://www.instagram.com/">Instagram</a></p>
<p><a target="_blank" href="https://www.amazon.com/">Amazon</a></p>
<p><a target="_blank" href="https://www.youtube.com/">Youtube</a></p>
<h2>Secondary Bookmark</h2>
<p><a target="_blank" href="https://www.facebook.com/">Facebook</a></p>
<p><a target="_blank" href="https://www.twitter.com/">Twitter</a></p>
<p><a target="_blank" href="https://www.linkedin.com/">LinkedIn</a></p>
<p><a target="_blank" href="https://www.github.com/">Github</a></p>
</body>
</html>