Sunday, January 12, 2014

CSS Syntax

CSS Syntax

I will just give you example. You can write it in your own way.

Get Started

<html>
<head>
<title>css syntax</title>
<style type="text/css">
h1{
color : red;
font-size : 4em;
border : 4px solid green;
}
p{
color : blue;
font-size : 22px;
}
</style>
</head>
<body>
<h1>This is my site</h1>
<p>Hello world</p>
</body>
</html>

It was just example to understand you. I hope it was helpful for you...Plz share your comment..

0 comments:

Post a Comment