website stuff is cool
"life is life"
<button onclick="changeQuote()">Change Quote</button>
<script>
var index = 0;
function changeQuote() {
var quotes = [
`"if you sit, you are sitting." - Divyansh Shukla`,
`"if you decide to get up, you are standing" - Divyansh Shukla`,
`"to stand or not to stand, that is the question" - Divyansh Shukla`,
`"to sit again, or not to sit again, that is the question" - Divyansh Shukla`
];
var blockquote = document.querySelector("blockquote");
blockquote.innerHTML = quotes[index];
index++;
if (index >= 4) {
index = 0;
}
}
</script>
</body>
