<div class="quiz-widget">
<h3>Quick Quiz!</h3>
<p>Did you find this post helpful?</p>
<button onclick="trackQuiz('yes')">Yes! 😊</button>
<button onclick="trackQuiz('no')">Not Really 😕</button>
</div>
<script>
function trackQuiz(response) {
// Send response to Google Analytics or your tracking system
console.log('User response:', response);
alert('Thanks for your feedback!');
}
</script>
<style>
.quiz-widget {
padding: 20px;
border: 2px solid #eee;
margin: 20px 0;
}
.quiz-widget button {
margin: 5px;
padding: 8px 15px;
cursor: pointer;
}
</style>

No comments:
Post a Comment