~newz/ubuntu-website/ubuntu07

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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
		<title>Untitled Document</title>
		<style type="text/css">
			body {
				background-color: #e8e8e8;
				margin: 0;
				padding: 0;
			}
			#container {
				height: 550px;
				background-color: #fff;
				margin: 0 3%;
				border-left: 15px solid green;
				border-right: 15px solid green;
				position: relative;
			}
			#leftcol, #rightcol {
				position: absolute;
				width: 15px;
				top: 0;
				background-color: red;
				height: 550px;
			}
			#leftcol {
				left: -15px;
			}
			#rightcol {
				right: -15px;
			}
		</style>
	</head>
	<body>
		<div id="container">
			<div id="content">
				<div id="leftcol"></div>
				Anything could be in here... who knows, even you?
				<div id="rightcol"></div>
			</div>
		</div>
	</body>
</html>