-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbookmark_added.html
More file actions
25 lines (25 loc) · 857 Bytes
/
bookmark_added.html
File metadata and controls
25 lines (25 loc) · 857 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Bookmark Added</title>
<link rel="stylesheet" href="isaac_styles.css" />
<link rel="stylesheet" href="spencer_styles.css" />
</head>
<body style="padding-top:60px;">
<iframe src="menu.html" class="menu-iframe" id="menu-iframe" title="menu" style="display:block;height:62px;border:0;position:fixed;top:0;left:0;width:100%;z-index:1000;"></iframe>
<div class="filter-bar">
Internships → Software Engineering Intern - Google
</div>
<div class="popup-message">
<p>Application Bookmarked Successfully</p>
<button class="ok-btn">OK</button>
</div>
</body>
<script>
document.querySelector(".ok-btn").onclick = function () {
window.location.href = "home.html";
};
</script>
</html>