Lives Matter Astrokitty911 Official Website(Raka): November 2016

Rabu, 09 November 2016

How to make CSS - part 2

We are back to another tutorial, so let's do it

so first, to edit your HTML through css link it first. second, type the part that you want to edit for example : 

body {
    background-color: lightblue;
}

h1 {
    color: white;
    text-align: center;
}

{
    font-family: verdana;
    font-size: 20px;
}

Further informations will be informed later in the next tutorial. Bye!

How to make CSS - Part 1

Hello!


So Previusly i did "How to make HTML", now i will teach you how to make CSS, the "decorations" for HTML. But before that, we need to understand what is CSS. so, what is CSS?
Cascading Style Sheet, is a style sheet language, used to beutify webpages, or to make the webpage nicer and better. CSS can change an attribute of almost any code, including, Header, border, etc. 

to link the CSS to HTML, insert this code in the header

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

That's it for now, bye!
Don't forget to like and comment!