fork download
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Copper Trading Website</title>
  7. <link rel="stylesheet" href="styles.css">
  8. </head>
  9. <body>
  10. <!-- Header Section -->
  11. <header>
  12. <div class="container">
  13. <h1>Copper Trading Center</h1>
  14. <nav>
  15. <ul>
  16. <li><a href="index.html">Home</a></li>
  17. <li><a href="about.html">About Us</a></li>
  18. <li><a href="news.html">News</a></li>
  19. <li><a href="gallery.html">Gallery</a></li>
  20. <li><a href="contact.html">Contact Us</a></li>
  21. <li><a href="members.html">Member Area</a></li>
  22. <li><a href="admin.html">Admin Area</a></li>
  23. <li><a href="rewards.html">Rewards</a></li>
  24. </ul>
  25. </nav>
  26. </div>
  27. </header>
  28.  
  29. <!-- Main Section -->
  30. <main>
  31. <section class="hero">
  32. <div class="container">
  33. <h2>Welcome to Copper Trading Center</h2>
  34. <p>Your trusted platform for copper trading and recycling.</p>
  35. </div>
  36. </section>
  37.  
  38. <section class="features">
  39. <div class="container">
  40. <div class="feature">
  41. <h3>Daily Copper Prices</h3>
  42. <p>Stay updated with the latest copper prices.</p>
  43. </div>
  44. <div class="feature">
  45. <h3>News Updates</h3>
  46. <p>Read the latest news on copper trading and recycling.</p>
  47. </div>
  48. <div class="feature">
  49. <h3>Reward Points</h3>
  50. <p>Accumulate points for rewards at the end of the year.</p>
  51. </div>
  52. </div>
  53. </section>
  54. </main>
  55.  
  56. <!-- Footer Section -->
  57. <footer>
  58. <div class="container">
  59. <p>&copy; 2025 Copper Trading Center. All rights reserved.</p>
  60. </div>
  61. </footer>
  62. </body>
  63. </html>
  64.  
Success #stdin #stdout 0.03s 25992KB
stdin
Standard input is empty
stdout
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Copper Trading Website</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <!-- Header Section -->
    <header>
        <div class="container">
            <h1>Copper Trading Center</h1>
            <nav>
                <ul>
                    <li><a href="index.html">Home</a></li>
                    <li><a href="about.html">About Us</a></li>
                    <li><a href="news.html">News</a></li>
                    <li><a href="gallery.html">Gallery</a></li>
                    <li><a href="contact.html">Contact Us</a></li>
                    <li><a href="members.html">Member Area</a></li>
                    <li><a href="admin.html">Admin Area</a></li>
                    <li><a href="rewards.html">Rewards</a></li>
                </ul>
            </nav>
        </div>
    </header>

    <!-- Main Section -->
    <main>
        <section class="hero">
            <div class="container">
                <h2>Welcome to Copper Trading Center</h2>
                <p>Your trusted platform for copper trading and recycling.</p>
            </div>
        </section>

        <section class="features">
            <div class="container">
                <div class="feature">
                    <h3>Daily Copper Prices</h3>
                    <p>Stay updated with the latest copper prices.</p>
                </div>
                <div class="feature">
                    <h3>News Updates</h3>
                    <p>Read the latest news on copper trading and recycling.</p>
                </div>
                <div class="feature">
                    <h3>Reward Points</h3>
                    <p>Accumulate points for rewards at the end of the year.</p>
                </div>
            </div>
        </section>
    </main>

    <!-- Footer Section -->
    <footer>
        <div class="container">
            <p>&copy; 2025 Copper Trading Center. All rights reserved.</p>
        </div>
    </footer>
</body>
</html>