blob: 25507b16f8be8d02e1490ee01b9b6337926bdbf5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!doctype html>
<html>
<head>
<title>Blueprint Layout 1</title>
<link rel="stylesheet" href="screen.css" type="text/css" media="screen, projection">
<link rel="stylesheet" href="print.css" type="text/css" media="print">
<!--[if lt IE 8]><link rel="stylesheet" href="ie.css" type="text/css" media="screen, projection"><![endif]-->
<style>
.top-margin { margin-top: 20px; }
div.box { background-color: #ddd; height: 100px; padding: 10px;}
</style>
</head>
<body>
<div class="container top-margin">
<div id="title" class="box span-24 last">
<h1>Title</h1>
</div>
</div>
</body>
</html>
|