summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--html/iframe.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/html/iframe.html b/html/iframe.html
new file mode 100644
index 0000000..cfa9cb2
--- /dev/null
+++ b/html/iframe.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <title>Iframe test</title>
+ <style>
+ html {
+ background: #ccc;
+ }
+ body {
+ padding: 3em;
+ }
+ iframe {
+ width: 700px;
+ height: 500px;
+ border: 1px solid #000;
+ }
+ </style>
+ </head>
+ <body>
+ <iframe src="about:welcome"></iframe>
+ </body>
+</html> \ No newline at end of file