Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <div class="container mt-5">
      <div class="row">
        <div class="col text-center">
          <h1>TYPING SPEED TEST</h1>
        </div>
      </div>
    </div>

    <div class="container mt-5">
      <div class="row">
        <div class="col text-center">
          <button id="countdown" class="btn btn-primary btn-lg mb-3">60s</button>
          <h3 id="wpm" class="mt-3"></h3>
        </div>
        
      </div>
    </div>

    <div class="container mt-5" id ="main">
      <div class="row ">
        <div class="col-9 text-center mx-auto">
          <h3 id="word" class="display-6"></h3>
          <textarea
            class="form-control text_input mb-3"
            placeholder="Start typing here..."
          ></textarea>
        </div>
      </div>
    </div>
    <div class="container mt-5" id = "reset">
      <div class="row">
        <div class="col text-center">
      <button id="reset_btn" class="btn btn-success   btn-lg h3">Take the Test Again</button>
        </div>
      </div>
    </div>
              
            
!

CSS

              
                @import url("https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap");
body {
  font-family: "DM Mono", monospace;
}
h1 {
  font-weight: 900;
}
#word {
  min-height: 11rem;
}

.correct {
  color: green;
}

.incorrect {
  color: red;
}
#reset {
  display: none;
}

              
            
!

JS

              
                const phrase = `People often look for ways to improve their lives. They want to be happy, healthy, and successful. 
To achieve these goals, they work hard, spend time with family and friends, and enjoy hobbies. 
Eating well and staying active are important for health. 
Learning new things and setting goals can help people grow.
Everyone has challenges, but staying positive and focused can make a big difference.
Helping others and being kind can also bring joy. 
Life is a journey, and every day is a chance to make it better.
Enjoy the little things and appreciate what you have. 
It's important to stay connected with others, communicate openly, and listen carefully. 
Reading books, exploring new places, and trying new activities can expand our horizons. 
Balancing work and relaxation helps maintain a healthy lifestyle. 
Remember to laugh often, love deeply, and live fully. 
Taking time to reflect on our experiences and learn from them can lead to personal growth. 
The support of loved ones can provide strength and comfort. 
Every moment is an opportunity to create lasting memories and build a fulfilling life.
In the end, it's not the years in your life that count. It's the life in your years. - Abraham Lincoln`;

const text = phrase.replace(/[\r\n]+\s*/g, " ").replace(/\s{2,}/g, " ");
// console.log(text);

const word = document.getElementById("word");
const timerDisplay = document.getElementById("timer");
const errorDisplay = document.getElementById("errors");
const wpm = document.getElementById("wpm");

word.textContent = text.split(" ").slice(0, 10).join(" ");
const displayLength = 80;

let duration = 60;
let timerStarted = false;
let interval;
const timerElement = document.getElementById("countdown");
const textInput = document.querySelector(".text_input");
const resetContainer = document.getElementById("reset");

textInput.addEventListener("input", (e) => {
  if (!timerStarted) {
    startTimer();
    timerStarted = true;
    console.log(timerElement.value);
  }

  const typedText = textInput.value;
  let displayText = "";
  let startIndex = Math.max(0, typedText.length - displayLength / 2);
  let endIndex = startIndex + displayLength;

  for (let i = startIndex; i < endIndex && i < text.length; i++) {
    if (i < typedText.length) {
      if (typedText[i] === text[i]) {
        displayText += `<span class="correct">${text[i]}</span>`;
      } else {
        displayText += `<span class="incorrect">${text[i]}</span>`;
      }
    } else {
      displayText += text[i];
    }
  }

  word.innerHTML = displayText;
});

function updateTyping() {
  mainContainer = document.getElementById("main");
  mainContainer.style.display = "none";
  const wordsTypedValue = document.querySelector(".text_input").value;
  const wordsTyped = wordsTypedValue.trim().split(/\s+/).length;

  wpm.textContent = `Your speed was: ${(wordsTyped * 60) / duration} WPM `;

  resetContainer.style.display = "block";
}

function startTimer() {
  let timer = duration;
  
  interval = setInterval(() => {
    timer--;
    timerElement.textContent = `${timer}s`;

    if (timer <= 0) {
      clearInterval(interval);
      timerElement.textContent = "Time's up!";
      updateTyping();
    }
  }, 1000);
}

const reset_btn = document.getElementById("reset_btn");
reset_btn.addEventListener("click", (e) => {
  mainContainer = document.getElementById("main");
  resetContainer.style.display = "none";
  mainContainer.style.display = "block";
  textInput.value = "";
  word.textContent = text.split(" ").slice(0, 10).join(" ");
  wpm.textContent = "";
  timerElement.textContent = "60s";
  timerStarted = false;
  
});

              
            
!
999px

Console