What is the tag for paragraphs?
<p> </p>
What is the tag for the smallest heading?
<h6></h6>
These two letters are used to measure size in coding.
PX
TRUE OR FALSE: CSS code uses "="
False
<head>
<p>hello</p>
</head>
<body>
<p>hello</p>
</body>
What is the largest heading tag?
<h1> </h6>
What is the tag to create a numbered list?
<ol></ol>
This CSS code changes the color of the text.
color:___;
This CSS code changes the size of the HTML element.
height or width
p {
color: brg (100, 200, 50)
}
p {
color: rbg (100, 200, 50)
}
What is the tag to create a dotted list?
<ul></ul>
What does the L I in this tag <li></li> stand for?
list item
This CSS code changes the type of font.
font-family:___;
This CSS code changes the color of the background.
background-color:___;
Debug the code:
<ol>hi</ol>
<ol>hello</ol>
<ol>hey</ol>
<ol>
<li>hi</li>
<li>hello</li>
<li>hey</li>
</ol>
What is the code for images?
<img src="image_filename" alt="name">
What is the code to link a CSS file to an HTML file?
<link rel="stylesheet" href="style.css">
The CSS code that creates a line over the text is called: ____?
overline
This CSS code can be used to underline text.
text-decoration:____;
<img scr="filename" alt="name">
<img src="filename" alt="name">
What does HTML stand for?
HyperText Markup Language
What does CSS stand for?
Cascading Style Sheet
This CSS code causes the HTML element to go to the left or right or center.
float: __;
This CSS code can turn a square border into a circle.
border-radius:___;
<link src=stylesheet href="___">
<link rel=stylesheet href="___">