cn template chatgpt

body { font-family: Arial, sans-serif; background-color: #fdfdfd; margin: 0; padding: 0; } .container { max-width: 900px; margin: 20px auto; padding: 0 15px; } .tab-group { margin: 25px 0; } .tab-buttons { display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-around; margin-bottom: 10px; } .tab-buttons button { padding: 10px 18px; background-color: #ffe082; border: none; border-radius: 6px; cursor: pointer; font-weight: bold; } .tab-buttons button.active { background-color: #ffca28; } .tab-content { display: none; background-color: #fff8e1; padding: 20px; border-radius: 10px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); } .tab-content.active { display: block; } h2 { color: #2e7d32; margin-top: 0; } strong { color: #2e7d32; } textarea { width: 100%; padding: 10px; } /* Tooltip styles */ .vocab-tooltip { border-bottom: 1px dotted #2e7d32; cursor: help; color: #2e7d32; font-weight: bold; } .non-vocab-tooltip { border-bottom: 1px dotted #000; cursor: help; color: #000; font-weight: bold; } .vocab-tooltip:hover::after, .non-vocab-tooltip:hover::after { content: attr(data-tooltip); position: absolute; background: #333; color: white; padding: 6px 10px; border-radius: 4px; font-size: 12px; white-space: nowrap; z-index: 10; } .answer-tooltip { border-bottom: 1px dotted #1976d2; cursor: help; color: #1976d2; font-weight: bold; } .answer-tooltip:hover::after { content: attr(data-answer); position: absolute; background: #1976d2; color: white; padding: 6px 10px; border-radius: 4px; font-size: 12px; white-space: nowrap; } /* Chinese story font bigger */ #story-a p { font-size: 20pt; line-height: 1.6; }

Summary (25 words):

ChineseWord

Example:

Audio coming soon.

10 Perguntas de Compreensão

  1. <span class="answer-tooltip" data-answer="“>(resposta)
  2. <span class="answer-tooltip" data-answer="“>(resposta)
  3. <span class="answer-tooltip" data-answer="“>(resposta)
  4. <span class="answer-tooltip" data-answer="“>(resposta)
  5. <span class="answer-tooltip" data-answer="“>(resposta)
  6. <span class="answer-tooltip" data-answer="“>(resposta)
  7. <span class="answer-tooltip" data-answer="“>(resposta)
  8. <span class="answer-tooltip" data-answer="“>(resposta)
  9. <span class="answer-tooltip" data-answer="“>(resposta)
  10. <span class="answer-tooltip" data-answer="“>(resposta)

Recontar o Texto

Múltipla Escolha


  1. a)
    b)
    c)

  2. a)
    b)
    c)

  3. a)
    b)
    c)

  4. a)
    b)
    c)

  5. a)
    b)
    c)

  6. a)
    b)
    c)

  7. a)
    b)
    c)

  8. a)
    b)
    c)

  9. a)
    b)
    c)

  10. a)
    b)
    c)

Verdadeiro ou Falso

  1. (resposta)
  2. (resposta)
  3. (resposta)
  4. (resposta)
  5. (resposta)
  6. (resposta)
  7. (resposta)
  8. (resposta)
  9. (resposta)
  10. (resposta)
document.querySelectorAll(‘.tab-group’).forEach(group => { const buttons = group.querySelectorAll(‘.tab-btn’); const contents = group.querySelectorAll(‘.tab-content’); buttons.forEach(button => { button.addEventListener(‘click’, () => { buttons.forEach(btn => btn.classList.remove(‘active’)); contents.forEach(content => content.classList.remove(‘active’)); button.classList.add(‘active’); document.getElementById(button.dataset.tab).classList.add(‘active’); }); }); });

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top