-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
49 lines (48 loc) · 1.46 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="main.css" type="text/css"/>
<style>
a {
width: 300px;
height: 100px;
line-height: 100px;
color: grey;
text-decoration: none;
font-size: 50px;
font-family: helvetica, arial;
font-weight: bold;
display: block;
text-align: center;
background: darkred;
position: static;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
border-radius: 10px;
border: 3px solid #368DBE;
border-top: 5px solid #C3D6DF;
text-shadow: 1px 1px 1px black;
-moz-box-shadow: 0 1px 3px black;
-webkit-box-shadow: 0 1px 3px black;
box-shadow: 0 4px 6px black;
float: left;
}
body{
background:black;
}
a.hover{
cursor:pointer;
background-color: red;
}
</style>
<title>
</title>
</head>
<body>
<a href="team-A.html">Team-A</a>
<a href="team-B.html">Team-B</a>
<a href="team-C.html">Team-C</a>
<a href="team-D.html">Team-D</a>
</body>
</html>