Print Options

Card layout: ?

← Back to notecard set|Easy Notecards home page

Instructions for Side by Side Printing
  1. Print the notecards
  2. Fold each page in half along the solid vertical line
  3. Cut out the notecards by cutting along each horizontal dotted line
  4. Optional: Glue, tape or staple the ends of each notecard together
  1. Verify Front of pages is selected for Viewing and print the front of the notecards
  2. Select Back of pages for Viewing and print the back of the notecards
    NOTE: Since the back of the pages are printed in reverse order (last page is printed first), keep the pages in the same order as they were after Step 1. Also, be sure to feed the pages in the same direction as you did in Step 1.
  3. Cut out the notecards by cutting along each horizontal and vertical dotted line
To print: Ctrl+PPrint as a list

12 notecards = 3 pages (4 cards per page)

Viewing:

Web technologies - HTML

front 1

Describe the basic structure of an HTML page

back 1

-background information or metadeta positioned between <head> and </head>

-all page content (text, images, buttons) positioned between <body> and </body>

-all HTML code for a webpage sits between the <html> and </html> tags.

front 2

What is the purpose of the <title> and </title> tags?

back 2

-Used to contain the information which is to be shown in the window title bar or webpage tabs

front 3

What is the <link> tag used for?

back 3

-Used to connect the web[age to external files such as a CSS or JavaScript file. A <link> tag is used to connect the webpage to the external file. This is positioned between the <head> tags.

front 4

What are the heading tags?

back 4

<h1> Heading goes here </h1>

-adds page heading/title for a page

-they come in different sizes with the largest being <h1></h1> and the smallest being <h6></h6>

front 5

How do you add an image onto a webpage?

back 5

-Use an image tag <img>

-Inside this tag we add the source (src) of the image (which may be a file path or a web address)> You can add some text to be displayed if the image doesn't load ) and we can specify the height and width of the image.

front 6

How do you add a hyperlink in HTML?

back 6

-Add an anchor tag <a>

-Anchor tags require the web address of the page to be linked

-The anchor tag sandwiches the text that will become a clickable link on the page.

front 7

How do you add a paragraph?

back 7

<p> and </p> tags are used to contain text that you wish to appear on the webpage

-with a paragraph tag, extra attributes (such as align) can be used to format the text

front 8

How do you make an unordered list?

back 8

-an unordered list (bullet point list) can be made using the <ul> </ul> tags (thats UL not U1)

-each list item is defined with <li></li> tags.

front 9

How do you make an ordered list?

back 9

-using the ol> tags, with each list item being defined using <li> tags

front 10

What are <div> tags used for?

back 10

-to format parts of the webpage differently, e.g. two sections with different background colours.

front 11

How do you add input boxes and buttons?

back 11

front 12

What do you need to add interactivity to a webpage?

back 12

-you have to add some kind of scripting language, e.g. JavaScript

-To add scripts to a webpage they need to be inserted between <script> tags