-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogout.html
50 lines (49 loc) · 1.27 KB
/
logout.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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>Logout</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
rel="stylesheet"
/>
<style>
body {
margin: 4em;
background-image: url("images/logout4.jpeg");
background-size: 1250px 750px;
font-family: "Nunito", sans-seri;
}
.lin > :hover {
background-color: rgba(132, 221, 139, 0.471);
border-radius: 0.8em;
padding: 0.2em;
}
</style>
</head>
<body>
<div style="font-size: 4em; color: rgb(0, 117, 0)">
<div>SUCCESSFULLY</div>
<div>LOGGED OUT</div>
</div>
<br />
<div class="lin">
<a
href="login.html"
style="color: rgb(0, 73, 59); text-decoration: none; font-size: 2.5em"
>
Login agian
</a>
</div>
<br />
<div class="lin">
<a
href="home.html"
style="color: rgb(0, 73, 59); text-decoration: none; font-size: 2.5em"
>
Cleanco home
</a>
</div>
</body>
</html>