CSS
HTML
words
Adding
center
100

Which CSS property controls the text size?

What is font-size  

100

What is HTML?

What is  the standard markup language for creating web pages.

100

What coding do I have to do to underline your words?

What is  text-decoration-line: underline

   

100

How do I add background colors to your coding?

What is Go into CSS and then go to the background Just change the colors of the background.  

100

What code do I use to center it to the right?

What is  block {
      text-align: right; /* Right-aligns block-level content within this block */
    }

200

the property is used to change the background color?

What is background-color  or bgcolor, color

200

How does HTML structure content?

What is  HTML uses elements (like <p> for paragraphs, <h1> for headings) to organize content.

200

How do you make bullet points for your coding pages?

What is  use the unordered list tags <ul></ul> and list item <li></li> tags

200

What coding do I add to make a table?

 What is  <table>
      <tr>
        <th>Header 1</th>
        <th>Header 2</th>
      </tr>
    </table>

200

What code do I use to center to the left?

What is <p style="text-align: left;">This text will be aligned to the left.</p>

300

How do you insert a comment in a CSS file?

What is   /* this is a comment */  

300

What are some key elements and attributes of HTML?

What is

- <html>

- <head>

- <body>

- <table>

300

How do I make my words bigger when coding?

What is  Specifically, you can use font-size for text, width and height for images or other elements, and transform: scale for more advanced scaling effects.

300

What coding do I use to add a link?

300

What code do I use to center it to the middle?

What is  <p style="text-align: center;">This text will be centered.</p>

400

 the coding for CSS syntax?

What is body {color: black;}  

400

 the purpose of the HTML document structure (e.g., <!DOCTYPE html>, <head>, <body>)?

What is organizing and defining the content and metadata of a webpage?

400

What coding do I use to make my words small?

What is <style>
  span. small {
    font-size: smaller; }
</style>
<body>
  <p>This is some normal text.</p>
  <p><span class="small">This is some smaller text.</span></p>
</body>

400

How do I add words to my coding pages?

What is  Use HTML elements that hold text. The most common aspect is the <p> tag for paragraphs, but you can also use heading tags (<h1> to <h6>) and various text formatting tags like <b> (bold), <i> (italic), and <u> (underline).

400

How do I center an image in the middle?

What is  <div style="text-align: center;">
  <img src="your-image.jpg" alt="Your Image">
</div>

500

the CSS stand for?

What is  Style Sheets.

500

 does HTML stand for?

 What is HyperText Markup Language.

500

add a coding a footer tag?

What is <footer>
    <p>Copyright © 2023 My Company. All rights reserved.</p>
  </footer>
</body>

500

How do I add an image to my coding pages?

What is  To add an image to your coding pages (typically HTML), you'll use the <img> tag, specifying the source (src) and alt attributes. The src attribute points to the image file, while the alt attribute provides alternative text for the image if it cannot be displayed.

500

How do I center my words in the middle?

What is  The <center> tag was used in HTML4 to center-align text.