Internet & Web History
HTML & CSS
JavaScript
Web Design & Wireframing
Miscellaneous
100

Who invented the world wide web?

Who is Tim Berners-Lee?

100

Which tag creates a hyperlink?

What is <a>?

100

What JavaScript keyword is used to declare a constant value?

What is const? 

100

What is the purpose of a low-fidelity wireframe?

To plan the layout structure of a webpage without focusing on design details

100

What does Ctrl + S do?

What is saves your work?

200

What was ARPANET originally created for?

What is Military and academic research?

200

What does the <meta name="viewport"...> tag do?

Makes the webpage responsive on different screen sizes

200

What is the purpose of the typeof operator?

To identify the type of a value (string, number, boolean, etc.)

200

Name two key principles of good web design.

Simplicity and Consistency

200

Which shortcut reopens the last closed browser tab?

What is ctrl + shift + t?

300

What was the first graphical web browser?

What was Mosaic?

300

Which CSS property changes the space inside an element?

What is padding?

300

Write a simple if...else statement that checks if a number is positive. Send if it's positive or negative to the console. (Or you could just return true or false instead)

if (num > 0) {

  console.log("Positive");

} else {

  console.log("Not positive");

}


300

What basic components should every wireframe include?

Header, navigation, main content, footer

300

How do you write a single-line comment in JavaScript?

What is //?

400

What major event in the late 1990s caused rapid growth in online businesses?

What was The Dot-Com Boom?

400

Write the HTML to insert an image with a description if it doesn’t load.

<img src="image.jpg" alt="Description">

400

Create an array with the values "rock", "paper", "scissors".

let choices = ["rock", "paper", "scissors"];

400

In Figma, what do Grids and Guides help you do?

Align and space elements consistently

400

Write CSS to create a box (class='box') that is 300px wide, 150px tall, has a cyan background, and centers text using Flexbox.

.box {

  width: 300px;

  height: 150px;

  background-color: #00FFFF;

  display: flex;

  justify-content: center;

  align-items: center;

}


500

Name three technologies Tim Berners-Lee introduced along with the web.

What are HTML, HTTP, and URLs?

500

What does display: flex; do in CSS? List two common properties used with Flexbox.

Enables Flexbox layout; 

common properties: justify-content, align-items, flex-direction, gap

500

In the Rock-Paper-Scissors project, how did the computer randomly choose its move?

Used Math.random() * 3 and then rounded down with Math.floor() to pick a random index from the array.

500

List four steps to create a wireframe.

  • Create a new frame

  • Sketch layout sections (header, nav, main, footer)

  • Label components

  • Refine and align design

500

Sketch or describe the basic layout for a simple 3-page website.

Pages: Home, About, Contact 

Each page includes: header (logo + nav), main content, footer (contact info or copyright)  

Bring to mr. tooley to get checked off.