-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsquared.html
43 lines (40 loc) · 1.05 KB
/
squared.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
41
42
43
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
<title>pui</title>
<link rel="stylesheet" href="css/global.css">
<script src="lib/jquery/1.9.1/jquery.min.js"></script>
<script src="lib/headroom/0.7.0/headroom.js"></script>
<script src="lib/template/template.min.js"></script>
<script src="js/global.js"></script>
<style type="text/css">
.squared-item {
padding: 10px;
}
.squared-item>div {
width: 100%;
height: 100%;
background-color: #f2f2f2;
}
</style>
</head>
<body>
<div class="container">
<div class="squared">
<a class="squared-item" href="">
<div>
</div>
</a>
<a class="squared-item" href=""></a>
<a class="squared-item" href=""></a>
<a class="squared-item" href=""></a>
<a class="squared-item" href=""></a>
<a class="squared-item" href=""></a>
<a class="squared-item" href=""></a>
</div>
</div>
</body>
</html>