Project Numbers

Code breakdown


Program Details (HTML)

<!DOCTYPE html>

<html>

<head>

  <title>Number Guessing Game</title>

  <link rel="stylesheet" type="text/css" href="styles.css">

</head>

<body>

  <div class="container">

    <h1>Number Guessing Game</h1>

    <p>Guess a number between 1 and 100:</p>

    <input type="number" id="guessInput" class="guess-input" placeholder="Enter your guess" min="1" max="100">

    <div class="button-container">

      <button class="btn" onclick="checkGuess()">Submit</button>

      <button class="btn" onclick="resetGame()">Reset</button>

    </div>

    <div class="result" id="result"></div>

    <div id="message"></div>

    <input type="hidden" id="randomNumber" value="">

  </div>

  <script src="script.js"></script>

</body>

</html>


Program Details (CSS)

body {

  font-family: Arial, sans-serif;

}


.container {

  max-width: 400px;

  margin: 0 auto;

  padding: 20px;

  border: 1px solid #ccc;

  border-radius: 5px;

  position: relative;

  animation: slideIn 1s ease-in-out;

}


@keyframes slideIn {

  0% {

    opacity: 0;

    transform: translateY(-100%);

  }

  100% {

    opacity: 1;

    transform: translateY(0);

  }

}


h1 {

  text-align: center;

}


.guess-input {

  width: 100%;

  padding: 10px;

  margin-bottom: 10px;

  box-sizing: border-box;

}


.result {

  text-align: center;

  font-weight: bold;

  margin-top: 20px;

  opacity: 0;

  animation: fadeIn 1s ease-in-out forwards;

}


@keyframes fadeIn {

  0% {

    opacity: 0;

  }

  100% {

    opacity: 1;

  }

}


.button-container {

  text-align: center;

  margin-top: 20px;

}


.btn {

  background-color: #4CAF50;

  color: white;

  padding: 10px 20px;

  border: none;

  border-radius: 5px;

  cursor: pointer;

}


.highlight {

  animation: glow 1s infinite alternate;

}


@keyframes glow {

  0% {

    text-shadow: 0 0 5px #fff;

  }

  100% {

    text-shadow: 0 0 20px #4CAF50, 0 0 30px #4CAF50, 0 0 40px #4CAF50;

  }

}


Program Details (JAVASCRIPT)

body {

  font-family: Arial, sans-serif;

}


.container {

  max-width: 400px;

  margin: 0 auto;

  padding: 20px;

  border: 1px solid #ccc;

  border-radius: 5px;

  position: relative;

  animation: slideIn 1s ease-in-out;

}


@keyframes slideIn {

  0% {

    opacity: 0;

    transform: translateY(-100%);

  }

  100% {

    opacity: 1;

    transform: translateY(0);

  }

}


h1 {

  text-align: center;

}


.guess-input {

  width: 100%;

  padding: 10px;

  margin-bottom: 10px;

  box-sizing: border-box;

}


.result {

  text-align: center;

  font-weight: bold;

  margin-top: 20px;

  opacity: 0;

  animation: fadeIn 1s ease-in-out forwards;

}


@keyframes fadeIn {

  0% {

    opacity: 0;

  }

  100% {

    opacity: 1;

  }

}


.button-container {

  text-align: center;

  margin-top: 20px;

}


.btn {

  background-color: #4CAF50;

  color: white;

  padding: 10px 20px;

  border: none;

  border-radius: 5px;

  cursor: pointer;

}


.highlight {

  animation: glow 1s infinite alternate;

}


@keyframes glow {

  0% {

    text-shadow: 0 0 5px #fff;

  }

  100% {

    text-shadow: 0 0 20px #4CAF50, 0 0 30px #4CAF50, 0 0 40px #4CAF50;

  }

}