Neocities.org

Theme:
Save View Share
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
<html><head>
<title>Web Page Layout</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="grid.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="box1">
<h1>BOX 1</h1>
<br>
</div>
<div id="box2">
<h1>BOX 2</h1>
<br>
</div>
<div id="box3">
<h1>BOX 3</h1>
<br>
</div>
<img style="-webkit-user-select: none; cursor: zoom-in;" src="http://georgebenainous
.com/web/code/layout_grid.gif" width="1000" height="1000">
<style>
 {  
    margin0;  
    padding0;  
}  
  
body {  
    font100% VerdanaArialHelveticasans-serif;  
    backgroundurl(layout_grid.gif) no-repeat top left;  
}  
  
h1 {  
    fontbold 90% Arialsans-serif;  
    margin-bottom0.5em;  
}  
  
p {  
    font65% Verdanasans-serif;  
}  
  
#box1 {  
    top100px;  
    left100px;  
    width160px;  
    padding10px;  
    opacity:1.0;  
    background#E2DFFF;  
    positionabsolute;  
}  
  
#box2 {  
    top200px;  
    left100px;  
    width160px;  
    padding10px;  
    opacity:1.0;  
    background#DFFFE3;  
    positionabsolute;  
}  
  
#box3 {  
    top300px;  
    left100px;  
    width160px;  
    padding10px;  
    opacity:1.0;  
    background#F1DFFF;  
    positionabsolute;  
}  
</style>
</body></html>
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX