HTML Practice

12345678910111213141516171819
Across
  1. 5. Defines the solid color that fills the background area of an element.
  2. 8. Viewport A setting in the <meta> tag that instructs the browser to load the page at 100% zoom, crucial for responsive design.
  3. 9. Defines the transparency level of an element, ranging from 0.0 (fully transparent) to 1.0 (fully opaque).
  4. 12. Layout Concept Achieved by setting the element's width and applying margin: 0 auto; (for horizontal centering).
  5. 14. Controls the size of the clear space outside the top border of an element.
  6. 18. A CSS image function that creates a smooth, straight-line transition between two or more specified colors.
  7. 19. Colors created by mixing an equal amount of one primary color and one secondary color (e.g., yellow-green).
Down
  1. 1. Rule Which creates a thematic break or separator between content sections.
  2. 2. Contains the internal CSS style definitions for an HTML document.
  3. 3. Specifies one or more images to be used as the background of an element.
  4. 4. Specifies the angle or starting point for the color transition in a gradient (e.g., to bottom right or 90deg).
  5. 6. color A function (rgb(R, G, B)) that defines color using numerical intensity values (0-255) for Red, Green, and Blue light.
  6. 7. Value represented by a standard English word (e.g., black, cyan, yellow).
  7. 10. Image Layout Concept Achieved in CSS by setting the image to display: block; and using margin: 0 auto;.
  8. 11. Properties that set the size of an element's visible box in the vertical dimension.
  9. 13. Used to align the inline contents (like text) within a block-level element (e.g., left, right, center).
  10. 15. A selector beginning with a dot (.) used to apply the same styling rules to multiple elements on a page.
  11. 16. Color A six-digit code preceded by a hashtag (#) used to define a color (e.g., #FF0000 for red).
  12. 17. attribute Declares the language of an element's content (e.g., <html lang="en">).