<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>Blockquote</title>
</head>
<body>
<div id="wrapper">
<h1 id="title">Blockquote</h1>
<blockquote>
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged.
</blockquote>
</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%);
background-attachment: fixed;
height: 100vh;
display: grid;
justify-content: center;
align-content: center;
grid-template-columns: minmax(150px, 440px);
font-family: 'Montserrat', sans-serif;
}
#wrapper {
max-width: 400px;
padding: 20px;
}
#title {
margin-bottom: 20px;
}
blockquote {
border-left: 5px solid white;
padding-left: 20px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.