Skip to content

Wuxi-Xiao/Game_Tracker

Repository files navigation

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Jack's Game Tracker</title>
    <link rel="stylesheet" href="../Stylesheet/Stylesheet.css">
</head>
<body>
    <header>
        <h1>Copyright Information</h1>
    </header>
    <nav>
        <a href="Home.html">Home</a>
        <a href="My-Storage.html">My storage</a>
        <a href="News.html">News</a>
        <a href="#">Copyright</a>
    </nav>
    <main>
        <h1>Copyright Information</h1>
        <p>All images and logo names contained in this website are protected by copyright law, and the relevant copyright and intellectual property rights belong to their respective copyright owners.</p>
        <p>We respect and acknowledge the rights of all copyright owners and have no intention of infringing any copyright or intellectual property rights. </p>
        <p>If you believe that any content on this website infringes your copyright, please contact us through the following contact information and we will deal with it in a timely manner.</p>
        <p>Email: [email protected]</p>
        <p>Github: <a href="https://github.com/Wuxi-Xiao" target="_blank">https://github.com/Wuxi-Xiao</a></p>
        <p>Thank you for using this website.</p>
    </main>
    <footer>
        <p>Copyright &copy; 2024-2024 Wuxi_Xiao</p>
        <p>All images and names used in this website are protected by copyright and belong to their respective copyright owners.</p>
    </footer>

    <!--注册sw.js-->
    <!--Register sw.js-->
    <script>
        if ('serviceWorker' in navigator) {
          window.addEventListener('load', () => {
            navigator.serviceWorker.register('../sw.js')
              .then(registration => {
                console.log('Service Worker registered with scope:', registration.scope);
              })
              .catch(error => {
                console.error('Service Worker registration failed:', error);
              });
          });
        }
      </script>
</body>
</html>