<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Progress Bar</title>
</head>

<body>
  <div id="wrapper">
    <h1 id="title">Progress Bar</h1>
    <progress id="project" max="100" value="70"> 70% </progress>
  </div>
</body>

</html>
@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(
    to right,
    #f78ca0 0%,
    #f9748f 19%,
    #fd868c 60%,
    #fe9a8b 100%
  );
  height: 100vh;
  display: grid;
  justify-content: center;
  align-content: center;
  grid-template-columns: minmax(150px, 440px);
  font-family: "Montserrat", sans-serif;
}

#wrapper {
  text-align: center;
  padding: 20px;
}

#title {
  margin-bottom: 20px;
}

progress {
  width: 100%;
  height: 50px;
  border: 5px solid white;
  border-radius: 5px;
  background-color: red;
}

progress::-webkit-progress-value {
  background-color: #ffc0cb;
}

progress::-webkit-progress-bar {
  background-color: white;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.