Computer Science HTML
What tag should begin all of your webpage documents?
<HTML>
Write a line that would display Ms.Kosbab. (bold)
<HTML><b>Ms. Kosbab</b><html>
Write a line that would display Burbank High School. (underline)
<HTML><u>Burbank High School</u><html>
Write a line that would display Computer Science.
<HTML>Computer Science<html>
Write a tag that would create the hyperlink School Website that would take you to www.burbankusd.org/BHS.
<a href = "http://www.google.com>School Website.</a>
Write a line that would set the background color to blue.
<body bgcolor = "blue">
What is the tag for a line break?
<br>
Write the line that would set the font color to red.
<font color = "red">
What is the tag for the largest headline?
<h1>
Write the lines that would create this ordered list: 1)Parts of a Computer 2)Binary/Hexadecimal Numbers 3)Spreadsheet 4) Web Design
<ol type start =1> <li> Parts of a ... <li> Binary... <li> spreadsheet <li>Web Design </ol>
What is the tag for a new paragraph?
<p>
Write a line that would insert the image named flower.gif.
<src img =flower.gif
What number system is used when naming colors?How many colors are available?
Hexadecimal; 16777216
What does HTML stand for?
Hyper Text Markup Language
What program will we use to view our webpages?
Internet browser (ex. Google Chrome, Firefox, Microsoft Edge, and Internet Explorer
What program will we use to write/edit our webpages?
Notepad
Why do some tags have closing tags while others do not?
Some tags do not need the extra closing tag because it in not mandatory. These self-closing tags are self-closing because it is obvious that they will always have to be closed, so the closing tag is built in when you type the opening tag.