-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0290_footer.html
35 lines (35 loc) · 1.04 KB
/
0290_footer.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
<!-- フッター -->
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<link href="assets/bootstrap.css" media="screen" rel="stylesheet" type="text/css" />
<style type="text/css">
.footer {
background-color: #eee;
min-width: 940px;
padding: 30px 0;
text-shadow: 0 1px 0 #fff;
border-top: 1px solid #e5e5e5;
-webkit-box-shadow: inset 0 5px 15px rgba(0,0,0,.025);
-moz-box-shadow: inset 0 5px 15px rgba(0,0,0,.025);
box-shadow: inset 0 5px 15px rgba(0,0,0,.025);
}
.footer p {
color: #555;
}
</style>
</head>
<body>
<footer class="footer">
<div class="container">
<p class="pull-right"><a href="#">上まで戻る</a></p>
<p>
なんとかかんとか<br/>
なんとかかんとか<br/>
<a href="http://twitter.com/twitter" target="_blank">@twitter</a> by <a href="http://twitter.com/xxx" target="_blank">@xxx</a><br/>
</p>
</div>
</footer>
</body>
</html>