<div id="quiz-wrap" style="width:100%;height:90vh">Loading quizzes…</div>
<script>
fetch('/s/quizzes.html')
  .then(function(r){ if(!r.ok) throw new Error('HTTP '+r.status); return r.text(); })
  .then(function(html){
    var w = document.getElementById('quiz-wrap');
    w.textContent = '';
    var f = document.createElement('iframe');
    f.style.cssText = 'width:100%;height:100%;border:0';
    f.srcdoc = html;
    w.appendChild(f);
  })
  .catch(function(e){
    document.getElementById('quiz-wrap').textContent = 'Could not load quizzes ('+e.message+')';
  });
</script>