Posts Details

Here is a detailed
explaination on this course

CSS

CSS / CSS

Just a sample of how CSS works

body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

h1{
    font-style: 25px;
    text-align: center;
    font-family: sans-serif;
    font-weight: 500;
}

a{
    text-decoration: none;
    font-size: 20px;
    color: blue;
    font-family: sans-serif;
}

Leave a comment