I have connected the downloaded css and js files from bootstrap, but the features are not working as expected. The <blockquote>
tag is displaying only plain text, and the <cite></cite>
element is not showing "-". What could be the reason behind this issue?
<head>
<title>Bootstrap Cheat Sheet</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/custom.css">
</head>
<body>
<!-- Block Quotes -->
<blockquote class="blockquote">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. </p>
<footer>Quote By <cite title="John Doe">John Doe</cite></footer>
</blockquote>