-
Notifications
You must be signed in to change notification settings - Fork 18
/
banner.html
69 lines (61 loc) · 1.38 KB
/
banner.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<head>
<link href='http://fonts.googleapis.com/css?family=Stint+Ultra+Condensed' rel='stylesheet' type='text/css'>
<style>
body {
color: #fff;
background: #fff;
font-size: 88px;
margin: 50px auto;
text-align:center;
}
div.banner {
font-family: 'Stint Ultra Condensed';
height: 50px;
width: 100%;
background-color: #000;
background: url(darth_stripe_sm.png) repeat;
position: absolute;
top: 0;
}
div.inner {
width: 840px;
margin: 0 auto;
}
div.banner p {
float: left;
font-size:18px;
margin: 0;
padding: 0 15px 0 0;
}
a {
text-decoration: underline;
color:#bb7711;
}
a:hover {
color:#bb5500;
}
p.reg {
font-family: 'Arial';
letter-spacing:5px;
margin-top: 13px!important;
}
p big {
font-size: 40px;
}
</style>
</head>
<body>
<div class="banner">
<div class="inner">
<p class="reg">This site could disappear forever.</p>
<a href="http://www.tumblr.com/protect-the-net">
<p>
<big>ACT NOW.</big>
</p>
</a>
<p>
<big>SAVE THE INTERNET.</big>
</p>
</div>
</div>
</body>