-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
27 lines (25 loc) · 812 Bytes
/
popup.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
<!DOCTYPE html>
<html>
<head>
<title>Google Popup</title>
<style>
/* Set the size of the popup window */
iframe {
width: 650px;
height: 500px;
}
</style>
<link href="./style.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<iframe src="https://google.com/search?igu=1" id="iframe"></iframe>
<div class="bottom">
<button id="back-button">Back</button>
<button id="forward-button">Forward</button>
<button id="home-button">Home</button>
<!-- <button class="btn" id="back-button" onclick="myFunc();"><i class="fa fa-home"></i></button> -->
<script src="popup.js"></script>
</div>
</body>
</html>