-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
28 lines (25 loc) · 863 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>iframe-browser</title>
<link rel="stylesheet" type="text/css" href="style.css">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<div class="tab">
Address: <input type="text" id="address"></input>
<button onclick="load()" class="btn">Load</button>
<button onclick="newtab()" class="btn">New tab</button><br>
<div id="tabbtns">
<button class="btn active" onclick="openTab(1)" id="tabb1">Tab 1</button>
</div>
</div>
<div id="tabs">
<div id="tab1" class="tabcontent" style="display:block">
<span onclick="close()" class="topright">[x]</span>
<span onclick="fullscreen(byId('iweb'+currentTab))" class="topright2">[+]</span>
<iframe src="" height="500" width="1000" id="iweb1" allowfullscreen></iframe>
</div>
</div>
</body>
</html>