-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasepage.html
More file actions
82 lines (73 loc) · 1.96 KB
/
Copy pathbasepage.html
File metadata and controls
82 lines (73 loc) · 1.96 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
<head>
<style type="text/css">
p.heading {
color: white;
font-family: arial;
font-size: 40;
user-select: none;
}
p.white {
color: white;
font-family: arial;
user-select: none;
}
p.red {
background-color: red;
color: white;
font-family: arial;
user-select: none;
}
p.yellow {
background-color: yellow;
color: black;
font-family: arial;
user-select: none;
}
p.green {
background-color: green;
color: white;
font-family: arial;
user-select: none;
}
p.blue {
background-color: blue;
color: white;
font-family: arial;
user-select: none;
}
*.unselectable {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
/*
Introduced in IE 10.
See http://ie.microsoft.com/testdrive/HTML5/msUserSelect/
*/
-ms-user-select: none;
user-select: none;
}
</style>
</head>
<html>
<body bgcolor="#0" class="unselectable">
<div id="foo" unselectable="on" class="unselectable">
<table border="0" cellspacing="0" cellpadding="0" class="unselectable">
<tr>
<td>
<img src="ov_computer_withbg.jpeg" alt="" usemap="#Map" class="unselectable" />
<map name="Map" id="Map">
<area alt="" title="" href="http://localhost:7860/?button=0" target="statusframe" shape="rect" coords="327,201,374,250" />
<area alt="" title="" href="http://localhost:7860/?button=1" target="statusframe" shape="poly" coords="395,210,394,265,450,265" />
<area alt="" title="" href="http://localhost:7860/?button=2" target="statusframe" shape="rect" coords="414,285,458,334" />
<area alt="" title="" href="http://localhost:7860/?button=n" target="statusframe" shape="poly" coords="302,328,334,358,311,410,252,348" />
<area alt="" title="" href="http://localhost:7860/?button=r" target="statusframe" shape="poly" coords="328,282,377,282,379,330,346,331,328,317" />
</map>
</td>
<td align="left" style="vertical-align:top;">
<iframe src="tut.html" style="border:none;" name="statusframe" width="300" height="656"></iframe>
</td>
</tr>
</table>
</div>
</body>
</html>