blob: d2f0d3a87efde62a46b27abe72337a97617d3e28 (
plain)
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
|
<html>
<head>
<title>The Big Red Button</title>
</head>
<style>
.button {
background-color: #FF0000;
color: #FFFFFF;
padding: 10px;
border-radius: 50px;
-moz-border-radius: 50px;
-webkit-border-radius: 50px;
margin:10px;
text-align: center;
font-size: 24px;
width: 200px;
height: 200px;
line-height: 200px;
}
a:link , a:visited , a:hover , a:active {
text-decoration: none;
}
</style>
<body>
<center>
<a href="/cgi-bin/brb"><div class="button">CLICK HERE</div></a>
</center>
</body>
</html>
|