-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.php
More file actions
55 lines (49 loc) · 1.07 KB
/
template.php
File metadata and controls
55 lines (49 loc) · 1.07 KB
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
<html>
<head>
<style>
ul
{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
}
li
{
float:left;
}
a.class1:link,a.class1:visited
{
display:block;
width:140px;
font-weight:bold;
color:#FFFFFF;
background-color:blue;
text-align:center;
padding:4px;
text-decoration:none;
text-transform:uppercase;
}
a.class1:hover,a.class1:active
{
background-color:blueviolet;
}
a.class2 {color:red;}
a.class2:link {text-decoration: none; color: blue;}
a.class2:visited {text-decoration: none; color: blue;}
a.class2:hover {text-decoration: underline; color: blue;}
a.class2:active {text-decoration: none; color: blue;}
</style>
</head>
<body>
<h1> MUISTILISTA </h1>
<ul>
<li><a href="muistilista.php" class="class1">Tarkastele askareita</a></li>
<li><a href="Askareenlisays.php" class="class1">Lisää uusi askare</a></li>
<li><a href="Kayttajatiedot.php" class="class1">Muokkaa omia tietoja</a></li>
<li><a href="Luokkienhallinta.php" class="class1">Muokkaa luokkia</a></li>
<li><a href="kirjauduUlos.php" class="class1">Kirjaudu ulos tästä</a></li>
</ul>
<br>
</body>
</html>