-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.4 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.4 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>IFrame</title>
<link rel="stylesheet" type="text/css" href="docs/css/iframe.css" title="style"/>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script type="text/javascript" src="docs/js/iframe.js"></script>
</head>
<body onload="onload();">
<ul>
<li><input class="menu" id="urlbox" placeholder="Enter Website Address" name="url" type="text" onkeypress="checkKeypress(event)" autocomplete="off"/></li>
<li><a class="menu" id="go" onclick="setIFrameSource();">Go</a></li>
<li class="dropdown">
<a class="menu" id="bookmarks" href="javascript:void(0)" class="dropbtn">Bookmarks</a>
<div class="dropdown-content">
<a id="top" onclick="setIFrameSourceToBookmark(0)">Bing</a>
<a onclick="setIFrameSourceToBookmark(1)">Diep.io</a>
<a onclick="setIFrameSourceToBookmark(2)">Skribbl.io</a>
<a onclick="setIFrameSourceToBookmark(3)">Slither.io</a>
<a onclick="setIFrameSourceToBookmark(4)">Secret Hitler</a>
<a onclick="setIFrameSourceToBookmark(5)">Town of Salem</a>
<a id="bottom" onclick="setIFrameSourceToBookmark(6)">Home</a>
</div>
</li>
</ul>
<div>
<iframe id="iframe" name="iframe" loadeddata="load();" frameBorder="0" scrolling="auto" noresize></iframe> <br/>
<script type="text/javascript">
</script>
</div>
</body>
</html>