What is the Web?
Intro to HTML
Formatting Text
Attributes
Tables
Internet Trivia
100

What is the internet?

A network of networks, a way for machines and communicate with each other, a way to make information open and accessible for all

100

What does HTML stand for?

Hypertext Markup Language

100

What tag is used to create a horizontal line across the page?

<hr>

100

What is the name of the attribute used to add a link to text?

href

100

What tag is used to contain all information about  a table?

<table>

100

What does WWW stand for?

World Wide Web

200

What is a server?

A device that hosts websites

200

What is the purpose of the <body> tag?

The body tag contains all of the HTML code that makes up your web page.

200

What is the purpose of the <p> tag?

The <p> tag creates a paragraph of plain text on it's on line.

200

Where is an attribute placed within tags?

It is placed in the opening tag, after the tag name and before the >

200

What tag is used to contain all of the information on one row of a table?

<tr>

200

When was the first email sent?

1971

300

What is a browser and what are 2 examples?

An application on your computer that allows you to browse web pages on the internet

Chrome, Firefox, Safari, Internet Explorer

300

Where does the <title> tag go in an HTML document and what does it do?

It is located in the <head> tags and it creates the text at the top of the browser

300
Write the code to create the following result:

A link that says "CodeHS Home Page" and is linked to the website www.codehs.com

<a href="www.codehs.com">

CodeHS Home Page

</a>

300

What is the generic format for an attribute?

name="value"

300

What attribute is used to adjust the thickness of the lines in a table?

border
300

When was HTML invented?

1991

400

What does URL stand for?

What is the domain and the path of the following URL?

www.fairlawnschools.org/home

Uniform Resource Locator

Domain: www.fairlawnschools.org

Path: /home

400

What is the purpose of an HTML tag and an example of the proper formatting?

They mark up the text of a document in order to tell the browser how the text should be displayed

Ex: <h1> text </h1> 

400

Write the code to create the following result:


I love playing Jeopardy!

<p>I <em>love</em> playing <em><strong>Jeopardy!</strong></em></p>

400

What is the purpose of an attribute?

It tells us more information about a tag

400
What two tags can be used to fill in specific elements of a table and what is each's purpose?

<th> creates a column header

<td> creates a single piece of data in a table

400

What does HTTP stand for?

Hypertext Transfer Protocol

500

What is a protocol and why are they important?

A widely agreed set of rules that standardize communication between machines, ensures all machines interpret and represent information the same way

500

Write the full skeleton for a basic HTML page

<!DOCTYPE html>

<html>

    <head>

        <title> </title>

    </head>

    <body>

    </body>

</html>

500

Write the code to create the following result:

1. Math

2. Science

    • Biology

    • Chemistry

3. English

<ol>

     <li> Math </li>

     <li> Science 

             <ul>

                  <li> Biology </li>

                  <li> Chemistry</li>

             </ul>

     </li>

     <li> English </li>

</ol>

500

What are 4 attributes that can be used when writing an <img> tag?

src, height, width, alt

500

Write the code to create the following table:

Name     Grade

Harry       92

<table>

    <tr>

        <th> Name </th>

        <th> Grade </th>

    </tr>


    <tr>

        <td> Harry </td>

        <td> 92 </td>

    </tr>

</table>

500

Who invented the World Wide Web and HTML?

Tim Berners-Lee