Skip to content

Instantly share code, notes, and snippets.

<!DOCTYPE html>
<html>
<head>
<title>04.2 Box Model Practice</title>
</head>
<body>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>02.1 CSS Selectors Secret Note </title>
</head>

Links Practice

  1. Make the words Long Island City link to https://www.nycgo.com/boroughs-neighborhoods/queens/long-island-city.
  2. Make the words Queens Vocational and Technical High School link to the school website.

If you finish early…

Below the paragraph, make a bulleted list of three notable QVT programs or clubs.

Link each name to a page on the Internet with more information about them.

RisiKo! Pocket

A game for 3-4 players

Components

  • game board in 8 pieces
  • 44 territory cards (1 for each of the 42 territories and 2 wild cards)
  • 10 objective cards (see "Objectives" section for more details)
  • 6 dice (3 red and 3 blue)
  • 300 tank pieces in 4 colors (75 each yellow, red, blue and black). Each tank piece represents one army unit.
<!DOCTYPE html>
<html>
<head>
<title>Pop Those Bubbles</title>
</head>
<body>
<h1>How fast can you pop all the bubbles?</h1>
(play this in full screen)
<div class="bubbles">
<button>Play</button>
<!DOCTYPE html>
<html>
<head>
<title>setTimeout and setInterval</title>
</head>
<body>
<div class="timeout-block">
<div class="counter" id="timeout-counter">0</div>
<button id="timeout-button">once</button>
<p>This button increases the counter by 1 after a second each time you click it.</p>
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<!-- Put your page markup here -->
</body>
</html>
@stormsweeper
stormsweeper / ptgs-calc.html
Created May 12, 2016 02:45
PTGS Calculator for Burning Wheel
<script language="JavaScript">
function verifyField(theField,maxValue,fieldName) {
if ( parseInt(theField.value) > maxValue ) {
theField.focus();
alert( "You may not enter more than " + maxValue + " for " + fieldName );
}
}
function calculatePTGS(theForm) {
var forte = parseInt(theForm.forteExponent.value);
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
/*
<!DOCTYPE html>
<head>
<link href="/normalize.css" rel="stylesheet">
<style>
header {
text-align: center;
background: url('http://dash.ga.co/assets/jeff-bg.png');
background-size: cover;
color: white;
}