-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.04 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no" />
<title>B2P ZMB</title>
<link rel="icon" type="image/x-icon" href="./img/b2plogo.ico" />
<style>
body {
margin: 0;
padding: 0;
}
#iframe-container {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
#image-container {
position: absolute;
top: 15px;
left: 80px;
z-index: 1;
padding: 10px;
}
</style>
</head>
<body>
<div id="image-container">
<a href="https://www.bridgestoprosperity.org/">
<img src="img/b2p-full-logo.png" alt="B2P Logo" width="120px" />
</a>
</div>
<div id="iframe-container">
<iframe width="100%" height="100%" src="https://studio.foursquare.com/public/2806c66a-a9df-45f4-80f2-c343b4f109ca/embed" frameborder="0" allowfullscreen></iframe>
</div>
</body>
</html>