-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestWeb.html
51 lines (49 loc) · 1.23 KB
/
testWeb.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
<!doctype html>
<html dir="ltr" lang="en">
<head>
<meta charset="utf-8">
<title>Empty Website</title>
<style>
body {
background: #c8c8c8;
margin: 0;
}
#backgroundImage {
border: none;
height: 100%;
pointer-events: none;
position: fixed;
top: 0;
visibility: hidden;
width: 100%;
}
[show-background-image] #backgroundImage {
visibility: visible;
}
table, th, td {
border: 1px solid black;
}
</style>
</head>
<body>
<iframe id="backgroundImage" src=""></iframe>
<h1>HELLO WORLD</h1>
<table>
<tr>
<th>header </th>
<th>for the</th>
<th>table</th>
</tr>
<tr>
<td>content</td>
<td>for the</td>
<td>table</td>
</tr>
<tr>
<td>content</td>
<td>for the</td>
<td>table</td>
</tr>
</table>
</body>
</html>