Starting a CSS file

PHOTO EMBED

Sun Jun 26 2022 20:03:38 GMT+0000 (Coordinated Universal Time)

Saved by @mbala ##css

/* Importing font library "Poppins" from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

/* Creating a default style for all elements in webpage */
*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}
content_copyCOPY