<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="keywords" content="HTML,CSS, Bootstrap, JavaScript, jQuery">
<meta name="author" content="Zia">
<meta name="Random Quote Machine Application" content="Random Quote Machine with HTML, CSS, Bootstrap, and jQuery. I a user click on a button it shows a new random quote. The user can also share out a quote by simply clicking a button on social media.">
<title>Random Quote Machine Application</title>
</head>
<body>
<div class="container vertical-center">
<div class="col-md-10 offset-md-1 mb-2">
<h1>Top 100 quotes of all time.</h1>
<blockquote class="quote-card green-card">
<p id="quote">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Doloremque at, architecto culpa sint veniam temporibus!!
</p>
<cite>
<span id="author"></span>
</cite>
</blockquote>
<a id="twitter" class="btn btn-lg btn-social btn-twitter"> <i class="fa fa-twitter"></i>Tweet Quote</a>
<button class="btn btn-success pull-right" id="randomQuote">New Quote</button>
</div>
</div>
</body>
</html>