Comment to 'Blocks that use CSS'
  • I dont really code much but I usually copy and paste and change that way. I know some HTML but some of the stuff I want to do requires both HTML and CSS. All I see is places to put HTML code but nowhere to put the CSS code

    • You can use the style tag to add css to an html document, if it's something simple.  More elaborate css should be a separate file that is called.  Do either in head injections

      <style>

      css goes between style tags

      </style>

      OR

      >
      <link rel="stylesheet" href="path/style.css">