blob: ab56002d47773d38323b22418af4486c1602d5b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!--
Any copyright is dedicated to the Public Domain.
http://creativecommons.org/licenses/publicdomain/
-->
<html>
<body>
<div style="position:absolute; width:25px; height:25px;
background:blue; top:50px; left:50px;"></div>
<div style="position:absolute; width:25px; height:25px;
background:blue; top:50px; left:100px;"></div>
<div style="position:absolute; width:25px; height:25px;
background:blue; top:100px; left:50px;"></div>
<div style="position:absolute; width:25px; height:25px;
background:blue; top:100px; left:100px;"></div>
</body>
</html>
|