Friends I think with the help of this page I can help you learning the html and some css designing...
For more help you can contact on Facebook

Monday 18 February 2013

Rounded corners Using Html and CSS

Friends today  I am going to tell u, how to create rounded corners on any div..

here is the html file  index.html
<html>
     <head>
         <title>Rounded Corner</title>
         <link rel="stylesheet" type="text/css" href="style.css">
     </head>
     <body>
              <div id="header"></div>
     </body>
</html>

and here is the css style.css

#header
{
      width:100px;
      height:100px;
      background-color:purple;
    -webkit-border-radius:10px;
}

No comments:

Post a Comment