-
Notifications
You must be signed in to change notification settings - Fork 0
/
6.html
65 lines (60 loc) · 1.84 KB
/
6.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thank You!</title>
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
/* background-color: #F9F9F9; Light gray background */
background: url('https://wallpaperaccess.com/full/1543424.jpg');
color: #333; /* Dark text color */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
}
.container {
max-width: 600px;
padding: 20px;
border-radius: 10px;
background-color: #bfe8f9; /* White background */
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}
h1 {
font-size: 36px;
margin-bottom: 20px;
color: #333; /* Dark heading color */
}
p {
font-size: 18px;
margin-bottom: 30px;
}
.button {
background-color: #0e1b28; /* Blue button background */
color: #FFF; /* White button text color */
border: none;
border-radius: 5px;
padding: 15px 30px;
font-size: 18px;
cursor: pointer;
transition: background-color 0.3s ease;
text-decoration: none;
}
.button:hover {
background-color: #0056b3; /* Darker blue button background on hover */
}
</style>
</head>
<body>
<div class="container">
<h1>Thank You!</h1>
<p>Thank you for visiting our virtual edition digital library.</p>
<a href="index.html" class="button">Back to Home</a>
</div>
</body>
</html>