Server : LiteSpeed
System : Linux lu-shared04.cpanelplatform.com 5.14.0-687.15.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jun 11 08:51:45 EDT 2026 x86_64
User : davehame ( 3216)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /home/davehame/www/go-4it/Fitness-SC1/

πŸ“ Create New:
⬆️ Upload File:
Current Dir [ Writable ] Root [ Writable ]


OR Upload from URL:
URL: Save as:

πŸ“„ File: Home-Fitness-Scorecard.html

Path: /home/davehame/www/go-4it/Fitness-SC1/Home-Fitness-Scorecard.html

Size: 5.77 KB

Permissions: 0644

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  
  <title>Home Fitness Scorecard</title>
  <link rel="stylesheet" href="styles.css" />
  <script defer src="https://cloud.umami.is/script.js" data-website-id="bc189423-6a62-44b9-b113-29aed49e249a"></script>
  <script src="quiz.js" defer></script>
  <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;900&display=swap" rel="stylesheet" />
</head>
<body>
  <header>
    <div class="logo" aria-label="Route-444.com logo">
      <span class="blue">Route-444</span><span class="gray">.com</span>
    </div>
  </header>

  <main class="container" role="main">

    <p class="preheadline">Instant Score + Strengths &amp; Weaknesses + Next Step</p>

    <h1 id="landing-headline-container"></h1>

    <p class="subheadline">Take the Fitness Scorecard Quiz and get your overall Fitness Score and a personalised report direct to your inbox in 4 minutes or less.</p>

    <div class="btn-centered">
      <button class="btn btn-to-quiz" type="button" aria-label="Get your fitness score now">Get Your Fitness Score</button>
    </div>

    <img src="https://f003.backblazeb2.com/file/go-4it/Videos/R444/WideClips/Fitness%20Scorecard%20Results%20Demo.gif" 
     alt="Route-444-Fitness-Report" 
     width="100%" 
     height="100%">

    <h2>Here's what you'll discover in just 4 minutes:</h2>

    <section class="checklist" aria-label="Fitness scorecard discoveries">
      <p>Get your overall fitness score - See exactly where you stand right now across all areas of health and fitness</p>
      <p>Find your strongest and weakest areas - Discover which categories you're already doing well in and which need attention</p>
      <p>Know exactly what to focus on next - Get pointed in the right direction based on your specific results</p>
    </section>

    <div class="btn-centered">
      <button class="btn btn-to-quiz" type="button" aria-label="Start your fitness assessment">Start the Fitness Assessment</button>
    </div>

    <!-- Who is Dave card -->
    <div class="who-dave-wrapper">
      <article class="card" tabindex="0" aria-label="Who is Dave - personal story">
        <h3>Who is Dave?</h3>
        <p>I'm a self-employed guy in my late 50s who got seriously worried about my health after 2020 when we all went through that huge health nightmare. By 2022 I decided I wanted to get fitter but I couldn't even do one push-up - pathetic considering I used to bang out dozens at 20.</p>
        <p>That was my wake-up call.</p>
        <p>I spent months researching how to get strong and fit without living in the gym or following crazy diets. Through trial and error, I created Route-444: a simple framework that takes just 4 minutes, 4 times a day, 4 days a week.</p>
        <p>It worked. I got stronger, fitter, and felt better than I had in years.</p>
        <p>Now I help other guys our age stay strong, fit and healthy.</p>
      </article>
    </div>

    <section class="cards" aria-label="Fitness scorecard testimonials and research benefits">
      <article class="card" tabindex="0">
        <h3>Keeping Fit IS Good For You....</h3>
        <p>I'm living proof of the 80/20 rule in action. Research shows you can get 80% of fitness results from just 20% of the effort.</p>
        <p>While gym fanatics spend hours lifting weights, I do push-ups, sit-ups, and a few other compound movements for just minutes (not hours) a day - yet I'm stronger than I've been in years. The Pareto Principle proves that most outcomes come from a few key actions.</p>
        <p>NCOA.org (National Council on Aging) describes the <a href="https://www.ncoa.org/article/the-life-changing-benefits-of-exercise-after-60/" target="_blank" rel="noopener noreferrer">life changing benefits of exercise after 60</a> including increased energy, stronger muscles, better balance, and reduced risk of chronic diseases.</p>
      </article>

      <article class="card" tabindex="0">
        <h3>Even I Benefited from the Scorecard....</h3>
        <p>"I was the first to take this quiz (obviously!), and honestly, it surprised me how clearly it showed what I was doing right and what I needed to work on. It was good to see a β€˜Score’. If you find it helpful too, I'd love to hear about it!" - Dave Hamer, Route-444 Creator</p>
      </article>
    </section>

    <section class="final-cta">
      <h2>Take the Fitness Scorecard Now!</h2>
      <p>It's only 28 questions, half of them are "Yes or No" quick fire answer and it only takes a few minutes.</p>
      <p>You'll get immediate RESULTS and recommendations and it's free.</p>

      <div class="btn-centered">
        <button class="btn btn-to-quiz" type="button" aria-label="Start taking fitness scorecards now">Start Now</button>
      </div>
    </section>
  </main>

  <script>
  document.addEventListener('DOMContentLoaded', () => {
    const baseQuizUrl = "https://go-4it.com/Fitness-SC1/Fitness_Scorecard1.html";
    const currentParams = new URLSearchParams(window.location.search);

    const fullReferrer = document.referrer || 'direct';
    let referrerDomain = 'direct';

    if(fullReferrer !== 'direct' && fullReferrer.trim() !== '') {
      try {
        const urlObj = new URL(fullReferrer);
        referrerDomain = urlObj.hostname.replace(/^www\./, '');
      } catch (e) {
        referrerDomain = 'unknown';
      }
    }

    sessionStorage.setItem('fullReferrer', fullReferrer);

    currentParams.set('referrer_domain', referrerDomain);

    const queryString = currentParams.toString();
    const finalUrl = baseQuizUrl + (queryString ? '?' + queryString : '');

    document.querySelectorAll('.btn-to-quiz').forEach(button => {
      button.addEventListener('click', () => {
        window.location.href = finalUrl;
      });
    });
  });
  </script>

</body>
</html>

← Back to Directory Edit File πŸ”’ Chmod

WP File Manager