<!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>Document</title>
</head>
<body>
  <blockquote>Lorem ipsum dolor sit amet consectetur adipisicing.</blockquote>
</body>
</html>
body{
  height: 100vh;
  dispaly: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em
}
blockquote{
  color: #242B2E
}
blockquote::before{
  content: open-quote;
  color: #CAD5E2;
  font-size: 4em;
  position: relative;
  top: 50px
}
blockquote::after{
  content: close-quote;
  color: #CAD5E2;
  font-size: 4em;
  position: relative;
  top: 60px
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.