diff options
Diffstat (limited to 'blueprint-layouts/layout1.html')
| -rw-r--r-- | blueprint-layouts/layout1.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/blueprint-layouts/layout1.html b/blueprint-layouts/layout1.html new file mode 100644 index 0000000..25507b1 --- /dev/null +++ b/blueprint-layouts/layout1.html @@ -0,0 +1,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> |
