-
Notifications
You must be signed in to change notification settings - Fork 1
/
simpledraw-12.html
66 lines (52 loc) · 990 Bytes
/
simpledraw-12.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
<doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SimpleDraw</title>
<style>
body {
background: gainsboro;
padding: 0;
margin: 0;
}
h1 {
text-transform: capitalize;
font-size: 1em;
font-family: Impact, sans-serif;
}
section {
border: thin gray solid;
height: 100%
}
section#controls {
float: left;
padding: 0 0.5em;
}
section#drawing-area {
float: left;
padding: 0;
margin: 0;
}
iframe {
border: none;
background: white;
width: 680px;
height: 680px;
}
</style>
<script>
</script>
</head>
<body>
<main id="app">
<section id="controls">
<h1>SimpleDraw</h1>
</section>
<section id="drawing-area">
<iframe id="iframe" src="simpledraw-12.svg">Please use a modern browser!</iframe>
</section>
</main>
<script>
</script>
</body>
</html>