-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopyright.html
59 lines (48 loc) · 1.44 KB
/
copyright.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>BitWise Learning - Copyright</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f5f5f5;
}
header {
background-color: #00b4d8;
color: white;
text-align: center;
padding: 15px 0;
}
h1 {
margin: 0;
}
.copyright-container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.copyright-content {
line-height: 1.6;
}
</style>
</head>
<body>
<header>
<h1>BitWise Learning - Copyright</h1>
</header>
<div class="copyright-container">
<div class="copyright-content">
<p>© 2023 BitWise Learning. All Rights Reserved.</p>
<p>This website and its content are the intellectual property of BitWise Learning and are protected by copyright law. Any unauthorized use, reproduction, or distribution is strictly prohibited.</p>
<p>BitWise Learning is a registered trademark. All other trademarks mentioned on this website are the property of their respective owners.</p>
<p>For inquiries or permissions, please contact us at <a href="mailto:[email protected]">[email protected]</a>.</p>
</div>
</div>
</body>
</html>