What section of a webpage contains the visible content that users see?
What is the <body> section?
This page is used for a normal paragraph of text.
What is <p>?
This attribute tells a hyperlink where to go.
What is <href>?
This kind of list shows bullet points.
What is an unordered list <ul>?
This style changes the background color of an element.
What is background-color?
Fill in the blank — <_____>My Page</_____> defines the title of the webpage.
What is <title>?
This is the smallest heading size.
What is <h6>?
Fix the image code — <img source="cat.png">
What is <img sir ="cat.png">?
This tag creates a numbered list.
What is <ol>?
Coding: Fix the mistake — <p style="color blue;">Hi</p>
What is <p style="color: blue;">Hi</p>?
This coding language provides color, fonts, borders, backgrounds, and alignment to webpages.
What is CSS?
Fix the mistake: <i>Italic text</b>
What is <i> and </i>?
These two attributes control the size of an image.
What is width and height?
Fix the mistake: <ul><li>Item 1<li>Item 2</ul>
What is <ul><li>Item 1</li><li>Item 2</li></ul>?
Name any two border styles besides “solid.”
What are Dotted, dashed, double, groove, ridge, inset, outset?
HTML stands for this.
What is hypertext markup language?
This element creates a new line break.
What is <br>?
This creates a horizontal section of a table.
What is <tr>?
Add a red 2px border to this: <div>Box</div>
What is <div style="border: 2px solid red;">Box</div>?
Write the opening and closing tag that wraps the entire webpage.
What is <html> and </html>?
This element allows you to add a comment to your code.
What is <!-- comment -->?
Fix the mistake: <img src="dog.jpg" width="200 height="200">
What is <img src="dog.jpg" width="200" height="200">
This element allows you to add data to your table.
What is <td>?
Fix the mistake: <button onclick="alert(Hello!")">Click</button>
What is <button onclick="alert('Hello!')">Click</button>?