Changes to goldorcrypto.scroll.pub

root
root
26 days ago
Initial commit
body.html
Changed around line 1
+
+

Gold or Crypto: The 5-Year Investment Showdown

+

Explore the historical trends, market correlations, and future potential of these two iconic assets.

+
+
+
+
+

Gold

+

The timeless store of value, gold has been a safe haven for centuries.

+
    +
  • Historical stability
  • +
  • Inflation hedge
  • +
  • Physical asset
  • +
    +
    +
    +

    Crypto

    +

    The digital revolution in finance, cryptocurrencies offer high growth potential.

    +
      +
    • High volatility
    • +
    • Decentralized
    • +
    • Technological innovation
    • +
      +
      +
      +
      +
      +

      Historical Performance

      +
      +
      +
      +

      Analyzing the past 5 years of gold and crypto performance reveals interesting trends.

      +
      +
      +
      +

      Future Projections

      +

      What does the next 5 years hold for these assets? We examine macroeconomic factors, technological advancements, and market sentiment.

      +
      +
      +
      +

      Disclaimer: This is not financial advice. Always do your own research before investing.

      +
      index.scroll
      Changed around line 1
      + buildHtml
      + baseUrl https://goldorcrypto.scroll.pub
      + metaTags
      + editButton /edit.html
      + title Gold or Crypto: The 5-Year Investment Showdown
      + style.css
      + body.html
      + script.js
      readme.scroll
      Changed around line 1
      + # goldorcrypto.scroll.pub
      + Website generated by DeepSeek from prompt: I want to create a website that look at the decision to invest in crypto or gold in the next 5 years. Look at historical macro correlations and other market factors. Be creative!
      script.js
      Changed around line 1
      + document.addEventListener('DOMContentLoaded', function() {
      + const ctx = document.getElementById('performanceChart').getContext('2d');
      + new Chart(ctx, {
      + type: 'line',
      + data: {
      + labels: ['2018', '2019', '2020', '2021', '2022', '2023'],
      + datasets: [
      + {
      + label: 'Gold',
      + data: [1200, 1300, 1500, 1800, 1700, 1900],
      + borderColor: '#FFD700',
      + fill: false,
      + },
      + {
      + label: 'Crypto',
      + data: [3000, 4000, 7000, 30000, 50000, 25000],
      + borderColor: '#4B33A8',
      + fill: false,
      + },
      + ],
      + },
      + options: {
      + responsive: true,
      + scales: {
      + y: {
      + beginAtZero: false,
      + },
      + },
      + },
      + });
      + });
      style.css
      Changed around line 1
      + :root {
      + --gold: #FFD700;
      + --crypto: #4B33A8;
      + --text: #333;
      + --background: #f4f4f4;
      + }
      +
      + body {
      + font-family: 'Arial', sans-serif;
      + color: var(--text);
      + background-color: var(--background);
      + margin: 0;
      + padding: 0;
      + line-height: 1.6;
      + }
      +
      + .hero {
      + background: linear-gradient(135deg, var(--gold), var(--crypto));
      + color: white;
      + padding: 4rem 2rem;
      + text-align: center;
      + }
      +
      + .hero h1 {
      + font-size: 2.5rem;
      + margin-bottom: 1rem;
      + }
      +
      + .comparison {
      + display: flex;
      + justify-content: space-around;
      + padding: 2rem;
      + flex-wrap: wrap;
      + }
      +
      + .asset {
      + background: white;
      + padding: 2rem;
      + border-radius: 10px;
      + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      + width: 45%;
      + margin: 1rem 0;
      + }
      +
      + .asset.gold {
      + border-bottom: 5px solid var(--gold);
      + }
      +
      + .asset.crypto {
      + border-bottom: 5px solid var(--crypto);
      + }
      +
      + .asset h2 {
      + font-size: 2rem;
      + margin-bottom: 1rem;
      + }
      +
      + .asset ul {
      + list-style: none;
      + padding: 0;
      + }
      +
      + .asset li {
      + margin: 0.5rem 0;
      + }
      +
      + .analysis, .future {
      + padding: 2rem;
      + background: white;
      + margin: 2rem 0;
      + border-radius: 10px;
      + box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      + }
      +
      + .chart-container {
      + width: 100%;
      + max-width: 800px;
      + margin: 0 auto;
      + }
      +
      + footer {
      + text-align: center;
      + padding: 1rem;
      + background: var(--text);
      + color: white;
      + }
      +
      + @media (max-width: 768px) {
      + .comparison {
      + flex-direction: column;
      + }
      +
      + .asset {
      + width: 100%;
      + }
      +
      + .hero h1 {
      + font-size: 2rem;
      + }
      + }