-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
49 lines (46 loc) · 1.92 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Facebook app frame</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<div class="option-box">
<div class="toggle checkbox">
<input type="checkbox" name="auto-height" id="auto-height" disabled="disabled">
<label for="auto-height">Auto height (no scroll)</label>
(<a target="_blank" href="http://www.hyperarts.com/blog/facebook-iframe-apps-getting-rid-of-scrollbars/">?</a>)
</div>
</div>
<div class="bar-top">
<div class="content">
<input type="url" id="urlInput" onkeyup="inputKeyUp(event)" placeholder="www.domain.com">
</div>
</div>
<div class="content">
<div class="bar-in">
<h1 class="title">Facebook app frame</h1>
<ul class="social-btns">
<li>
<iframe src="http://ghbtns.com/github-btn.html?user=octavioamu&repo=facebook-app-frame&type=watch&count=true" height="30" width="118" frameborder="0" scrolling="0" style="width:118px; height: 30px;" allowTransparency="true"></iframe>
</li>
<li>
<iframe src="http://ghbtns.com/github-btn.html?user=octavioamu&repo=facebook-app-frame&type=fork&count=true" height="30" width="118" frameborder="0" scrolling="0" style="width:118px; height: 30px;" allowTransparency="true"></iframe>
</li>
<li>
<iframe src="http://ghbtns.com/github-btn.html?user=octavioamu&type=follow&count=true" height="30" width="168" frameborder="0" scrolling="0" style="width:168px; height: 30px;" allowTransparency="true"></iframe>
</li>
</ul>
</div>
<iframe id="iframeid" class="iframe-tab" style="width:810px;height:800px;" frameborder="0" src="sample.html"></iframe>
<footer>
<p>
Maked by <a href="http://twitter.com/octavioamu">@octavioamu</a>
</p>
</footer>
</div>
<script src="js/functions.js"></script>
</body>
</html>