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
What does HTML stand for?
Hypertext Markup Language
What tag is used to create a horizontal line across the page?
<hr>
What is the name of the attribute used to add a link to text?
href
What tag is used to contain all information about a table?
<table>
What does WWW stand for?
World Wide Web
What is a server?
A device that hosts websites
What is the purpose of the <body> tag?
The body tag contains all of the HTML code that makes up your web page.
What is the purpose of the <p> tag?
The <p> tag creates a paragraph of plain text on it's on line.
Where is an attribute placed within tags?
It is placed in the opening tag, after the tag name and before the >
What tag is used to contain all of the information on one row of a table?
<tr>
When was the first email sent?
1971
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
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
A link that says "CodeHS Home Page" and is linked to the website www.codehs.com
What is the generic format for an attribute?
name="value"
What attribute is used to adjust the thickness of the lines in a table?
When was HTML invented?
1991
What does URL stand for?
What is the domain and the path of the following URL?
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>
Write the code to create the following result:
I love playing Jeopardy!
<p>I <em>love</em> playing <em><strong>Jeopardy!</strong></em></p>
What is the purpose of an attribute?
It tells us more information about a tag
<th> creates a column header
<td> creates a single piece of data in a table
What does HTTP stand for?
Hypertext Transfer Protocol
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
Write the full skeleton for a basic HTML page
<!DOCTYPE html>
<html>
<head>
<title> </title>
</head>
<body>
</body>
</html>
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>
What are 4 attributes that can be used when writing an <img> tag?
src, height, width, alt
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>
Who invented the World Wide Web and HTML?
Tim Berners-Lee