/bootstrap5-checkout-example

copy and paste from chrome dev tools, elements; then configure

Primary LanguageHTML

bootstrap5-checkout-example

*So far, easiest way seems to be just copy the svg entirely from site, no downloading.

  1. npm i bootstrap-icons
  2. Take bootstrap-icons.svg file out of bootstrap-icons folder, but it in the same directory as your index HTML file.
2. Go to bootstrap-icons folder, go to icons, copy and paste into an img folder, a file holding the svg icon you want.

img/alarm-fill.svg

  1.             <img src="./img/alarm-fill.svg" width="100" alt="alarm-fill" />
    

=> this way won't let you change its color

  1. :root { --css-variables: url(""); }

    .circle { width: 10; height: 10; background-image: var(--circle); }