forked from pol-is/polisClientAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
embedReport.html
69 lines (60 loc) · 1.37 KB
/
embedReport.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html>
<head>
<title>Polis Report Embed Demo</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.banner {
background-color: #ccc;
border-radius: 3px;
height: 80px;
width: 620px;
margin-top: 40px;
margin-left: 10px;
margin-right: 10px;
margin-bottom: 40px;
}
.paragraph {
background-color: #ddd;
border-radius: 3px;
height: 20px;
width: 620px;
margin-top: 20px;
margin-left: 10px;
margin-right: 10px;
}
.last-line {
width: 100px;
}
.spacer {
height: 20px;
}
</style>
</head>
<body style="width: 100%">
<div style="width: 900px; margin: auto;">
<div class="banner"></div>
<div class="paragraph"></div>
<div class="paragraph"></div>
<div class="paragraph"></div>
<div class="paragraph"></div>
<div class="paragraph"></div>
<div class="paragraph last-line"></div>
<div class="spacer"></div>
<div class="paragraph"></div>
<div class="paragraph"></div>
<div class="paragraph"></div>
<div class="paragraph"></div>
<div class="paragraph"></div>
<div class="paragraph last-line"></div>
<div class="spacer"></div>
</div>
<iframe
src="https://pol.is/report/2arcefpshi000"
style="
width: 99%;
border: 1px solid gray;
min-height: 700px;
"></iframe>
</body>
</html>