-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
copyright.html
113 lines (100 loc) · 2.96 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-3NHFVTRVLZ"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-3NHFVTRVLZ');
</script>
<title>Copyright Notice</title>
<meta charset="UTF-8">
<style>
body {
font-family: Arial, sans-serif;
background-color: #F2F2F2;
padding: 20px;
}
.container {
max-width: 800px;
margin: 0 auto;
background-color: #FFFFFF;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333333;
text-align: center;
margin-bottom: 20px;
}
p {
color: #666666;
line-height: 1.5;
}
.footer {
text-align: center;
margin-top: 20px;
color: #999999;
font-size: 12px;
}
.theme-logo {
text-align: center;
margin-top: 40px;
}
.theme-logo a {
display: inline-block;
text-decoration: none;
color: #333333;
font-size: 16px;
font-weight: bold;
}
.theme-logo img {
height: 30px;
width: auto;
margin-right: 10px;
vertical-align: middle;
}
/* Styling for a more professional look */
.container {
border: 2px solid #E4E4E4;
border-radius: 10px;
}
h1 {
color: #333333;
font-size: 28px;
margin-bottom: 30px;
}
p {
color: #666666;
font-size: 16px;
line-height: 1.6;
}
.footer {
margin-top: 40px;
color: #999999;
font-size: 14px;
}
.theme-logo img {
height: 40px;
}
</style>
</head>
<body>
<div class="container">
<h1>Copyright Notice</h1>
<p>All rights reserved © 2023 Zigao Wang.</p>
<p>Notice: The information contained herein is the property of Zigao Wang and its affiliated companies and is proprietary to Zigao Wang. The intellectual property and technical concepts contained herein may be protected by international patents, patent applications, trade secrets, and copyright laws. Unauthorized distribution or copying of this material is strictly prohibited without the prior written permission of Zigao Wang.</p>
<p>For more information, please contact: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
<div class="footer">
Last updated: June 1, 2023
</div>
<div class="theme-logo">
<a href="index.html">
<img src="logo.png" alt="Logo">
</a>
</div>
</body>
</html>