-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcssunits.html
40 lines (40 loc) · 931 Bytes
/
cssunits.html
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="renderer" content="webkit">
<meta charset="utf-8">
<title>cssunits demo</title>
<link rel="stylesheet" href="css/cssunits.css">
<script src="../build/sea.js"></script>
<script src="../build/css3.js"></script>
<script>
seajs.config({
debug: true,
base: "../build/"
}).use(["matchmedia", "prefixfree", "cssunits"]);
</script>
</head>
<body>
<div id='header'>
<a href="#">
<h1 id="logo">Resize the Window!</h1>
</a>
<div id='nav'>Navigation</div>
</div>
<div id="content">
<div id="highlights">Highlights</div>
<div id="news">
<div id="item1">News item 1</div>
<div id="item2">News item 2</div>
<div id="item3">News item 3</div>
</div>
<div id="ads">
<div id="ad1">ad 1</div>
<div id="ad2">ad 2</div>
<div id="ad3">ad 3</div>
</div>
</div>
<div id='footer'>Footer</div>
</body>
</html>