<h1> Ally Fowler
<h1> Ally Fowler </h1>
Which code would I use to have cursive display
A. .p2 {
font-family: Brush Script MT , Cursive;
}
B p2 {
font-family: Lucida Handwriting , Cursive;
}
C. p2 {
font-family: Cursive;
}
D. Any/ All of the above
D. Any/ All of the above
True or False: When you add an image, all you have to do is upload it
False
Write the code
<h1>Student of the Month</h1>
<h1> Ally Fowler </hl>
<h1> Ally Fowler </h1>
Which code would I use to change the background?
A h1 {
background-color: green;
}
b h1 {
Color: green;
}
c h1 {
background: green;
}
A h1 {
background-color: green;
}
What is it called when you work with someone to check your code as you are coding
Partnered coding
What would this line of code display?
h1 {
color: purple;
font-size: 50px;
}
The first header would be the color purple with a large font size.
Color:pink;
}
H1{
Color:pink;
}
If I wanted something underlined, which would I use
A. Font family
B. Font Style
C. Text decoration
C. Text decoration
What do we call this
<h1> </h1>
a Tag
Write the CSS code for if I want header centered
H1 {
text-align: center;
}
H1{
Color:pink;
Font-family: cursive
}
H1{
Color:pink;
Font-family: cursive ;
}
Which code is going to need to be debugged
A.
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- title and page introduction -->
<h1>Cool Animals</h1>
<p>Here's my list of cool animals that you will probably never see. They are mostly water type animals because those are the coolest.</p>
<!-- list of animals and pictures -->
<ol>
B.
<li>
<h3>Baiji</h3>
<p>The baiji is a type of dolphin that lives in a river in China. Maybe it's extinct, maybe not, but right now scientists can't find any.</p>
<img src="baiji.jpg" alt="Baiji" >
<p>from Alessio Marrucci on commons.wikimedia.org - CC BY-SA 3.0</p>
</li>
C.
<!-- Steller's Sea Cow -->
<li>
<h3>Steller's Sea Cow /h3>
<p>Its skin is an inch thick, and instead of teeth, it has white bristles. Imagine eating with your mustache.</p>
<img src="sea-cow.jpg" alt="Steller's Sea Cow" >
<p>Emoke Denes on commons.wikimedia.org - CC BY-SA 2.5 </p></li>
C.
<!-- Steller's Sea Cow -->
<li>
<h3>Steller's Sea Cow </h3>
<p>Its skin is an inch thick, and instead of teeth, it has white bristles. Imagine eating with your mustache.</p>
<img src="sea-cow.jpg" alt="Steller's Sea Cow" >
<p>Emoke Denes on commons.wikimedia.org - CC BY-SA 2.5 </p></li>
On what page would you add "Style"
.CSS
Write the code
Born in NM
<H1>Ally Fowler </H1>
<p> Born in NM </p>
*Multiple Errors*
H1 {
Color: Magenta
font-size: 40;
font-family "Times New Roman", Times, serif;
*Multiple Errors*
H1 {
Color: Magenta;
font-size: 40px;
font-family: "Times New Roman", Times, serif;
}
If I wanted to write out the instructions for cooking mac and cheese, which coding for a list should I use AND why?
A: ol.c {
list-style-type: upper-roman;
}
B: ul.a {
list-style-type: circle;
ol.c {
list-style-type: upper-roman;
}
I. Bring a pot of water to a boil
2. Place the contents of the noodles into the water
etc..
Roman numerals communicate the order of when, first, second etc
What does HTML stand for
Write the code
Ally was born in NM in 1995, but moved to Arizona in 2000. She has been in Arizona since.
<h1>Ally Fowler </h1>
<h2>Origins: New Mexico </h2>
<p>Ally was born in NM in 1995, but moved to Arizona in 2000. She has been in Arizona since.</p>