Skip to content

MKY2822006660/Dinosoft-2.1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

<!DOCTYPE html>
<html lang="en">
    <head>
    
        <link rel="icon" type="image/x-icon" href="DINOSOFT-LOGO.jpg">
        
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Dinosoft - Copyright Notice</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }
        #content {
            padding-left: 60px;
            padding-right: 60px;
            text-align: justify;
        }
        .paragraph {
            margin-bottom: 1em;
        }
        h4 {
            margin-top: 1em;
        }
    </style>
</head>
<body>
    <center>
    <h1 style="font-size: 80px">Dinosoft Copyright</h1>
</center>

    <div id="content">
        <div class="paragraph">
            <p>Welcome to Dinosoft! Before exploring, please note our copyright notice covering third-party services, tools, and non-licensable photos that contribute to our site's functionality and design.</p>
        </div>

        <div class="paragraph">
            <p><strong>Dinosoft recognizes W3Schools as a valuable resource for addressing coding errors.</strong> Utilized to enhance overall coding quality, it ensures a smooth, error-free user experience on our website.</p>
        </div>

        <div class="paragraph">
            <p><strong>2. CodePen:</strong> We use CodePen for implementing backgrounds, CSS, graphs, and other elements to enhance our website's visual appeal. CodePen is crucial to the creative and aesthetic aspects of Dinosoft's design.</p>
        </div>

        <div class="paragraph">
            <p><strong>3. Google Co.:</strong> Dinosoft incorporates Google's search engine technology for an efficient user search experience. Google Analytics is also used to track user numbers, aiding in understanding and enhancing our website's performance.</p>
        </div>

        <div class="paragraph">
            <h4><strong>4. ChatGPT:</strong> Dinosoft uses ChatGPT, an OpenAI product, to address coding errors. This advanced language model enhances the accuracy and efficiency of our coding processes, ensuring a more robust and reliable website.</h4>
        </div>

        <div class="paragraph">
            <h4>Dinosoft depends on CodeHS for URL management and code execution. This platform significantly contributes to the functionality and execution of various features on our website.</h4>
        </div>

        <div class="paragraph">
            <h4><strong>Use of Non-Licensable Images:</strong> Dinosoft informs users that some images on our website may not be licensable. Though specific details are not disclosed, we emphasize our commitment to respecting intellectual property rights and adhering to relevant copyright laws and regulations.</h4>
        </div>

        <div class="paragraph">
            <h4>Dinosoft acknowledges that the intellectual property and copyrights of W3Schools, CodePen, Google Co., ChatGPT, and CodeHS, along with the original creators of non-licensable photos, belong to their respective owners. Dinosoft respects and adheres to the terms and conditions set forth by these entities in utilizing their services.</h4>
        </div>

        <div class="paragraph">
            <h4>As part of our commitment to transparency, we've integrated an interactive pie chart on the right side of this page. Users can hover over each segment to view corresponding percentages and the names of third-party tools and services used in developing Dinosoft. This dynamic feature enhances your understanding of the elements contributing to the functionality and aesthetics of our website.</h4>
        </div>

        <div class="paragraph">
            <h4>We trust that the interactive pie chart, along with the comprehensive copyright notice, offers a clear overview of the tools, services, and non-licensable photos in Dinosoft. For any questions or concerns about our use of third-party resources or specific site content details, please reach out. Your feedback is valuable, and we appreciate your active participation in the Dinosoft community!</h4>
        </div>

        <div class="paragraph">
            <h3>Contact Information:</h3>
            <ul>
                <li>For direct communication with the developer, you can email Mohammed K. Yousef at <a href="mailto:[email protected]">[email protected]</a>.</li>
                <li>To contact the company, please use <a href="mailto:[email protected]">[email protected]</a>. We welcome your inquiries, suggestions, and feedback as we strive to enhance your experience on Dinosoft.</li>
            </ul>
        </div>
    </div>
</body>
</html>

<!DOCTYPE html>
<html>
<head>
<center>
  <script src="https://www.gstatic.com/charts/loader.js"></script>
</head>
<body>
  <div id="customChart" style="width:100%; max-width:600px; height:500px;"></div>

  <script>
    google.charts.load('current', {'packages':['corechart']});
    google.charts.setOnLoadCallback(drawChart);

    function drawChart() {
      // Set Data
      const data = google.visualization.arrayToDataTable([
        ['Company', 'Value'],
        ['ChatGPT', 40],
        ['CodeHS', 20],
        ['CodePen', 10],
        ['W3Schools', 10],
        ['Google Co.', 8],
        ['Bing AI', 6],
        ['Google Bard', 6]
      ]);

      // Set Options
      const options = {
        title: 'Dinosoft Copyright Graph',
        pieSliceText: 'percentage',
        slices: {
          0: { color: '#02B3E7' },
          1: { color: '#CFD3D6' },
          2: { color: '#736D79' },
          3: { color: '#776068' },
          4: { color: '#EB0D42' },
          5: { color: '#FFEC62' },
          6: { color: '#04374E' }
        }
      };

      // Draw
      const chart = new google.visualization.PieChart(document.getElementById('customChart'));
      chart.draw(data, options);
    }
  </script>
</body>
</html>










<img src="developer-signature.png" alt="Signature" width="250" height="120">





</center>

About

No description, website, or topics provided.

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published