Printable Loopcards | Web authoring | iGCSE ICT

What are loop cards?

Loop cards are a great game that can be played individually or as a class. They are perfect for review key vocabulary or questions at the end of a topic or when revising for an exam.

Instructions

  1. Cut out the cards from the paper horizontally (but don't cut them in half!) and then shuffle them.
  2. Now start joining each question on the right hand side of the card to the matching answer on the next card.
  3. Carry on until all the cards loop together and you have competed the game!

Hint: Make sure that you set your paper to portrait to print 4 cards per sheet of A4 paper.

Edit Vocab

Rowspan and colspan are used to merge cells horizontally or vertically.
What is the attribute for creating a button onclick event?
onclick
What is the benefit of using external CSS?
External CSS allows you to separate your styles from your HTML document, making it easier to manage and update your styles across multiple pages.
How can you apply a CSS style to multiple HTML elements at once?
By using a class or ID selector.
How does inline CSS differ from external CSS?
Inline CSS is applied directly to the element within the HTML code, whereas external CSS is stored in a separate file and linked to the HTML document.
How do you create a table with 3 rows and 4 columns?
<table><tr><td></td><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td></tr><tr><td></td><td></td><td></td><td></td></tr></table>
What is the purpose of the hover pseudoclass in CSS?
The hover pseudoclass is used to change the appearance of the button when the user hovers over it.
How do you add a background color to a table?
Use the 'bgcolor' attribute or the 'background-color' property
What are some disadvantages of using inline CSS?
It can be time-consuming to apply to many elements, and it can make the HTML code cluttered and harder to read.
How can 'rowspan' be used in a table?
'rowspan' is used to merge multiple rows into a single cell.
What are rowspan and colspan used for?