Nice to sharing you guys all of the
world, this morning I share you about how to learning css from zero until you
master in using it in your program(website). in the last 2 years ago, I have
ever so got in trouble when I take source of learning of css. So now, I wanna
write you all about tutorial of css. Let us start from what is really
definition of css.
CSS is a styles, don’t take trouble
to long thingking of it again I hope you can understand it now.css is combined
with programmer language that describes the presentation of an HTML (or XML)
document.
InThis tutorial I will show you CSS from basic to master until you
implement it in your website.
++++++++++++++++++++++++++++++++++++++++++++
For
Example
With your editor as if notepad, wordpad and many others you can search it in your google
internet, type this following code below.
CSS code:
<html>
<head>
<style>
body {
background-color: #d0e4fe;
}
h1 {
color: orange;
text-align: center;
}
p {
font-family: "Times New Roman";
font-size: 20px;
}
</style>
</head>
<body>
<h1>The CSS tutorial form Amin
Setiawan Lahagu-Wawan Lahagu gitu lho</h1>
<p>sign this pragraph.</p>
</body>
</html>
Output: