Saturday, February 7, 2015

How to draw a circle using HTML and CSS

<html>
<style  type="text/css">
#circle{
width:100px;
height:100px;
mardin:100px auto;
background-color:red;
border-radius:100px;
}
</style>

<body>
<div id="circle"></div>
</body>
</html>

Share this

0 Comment to "How to draw a circle using HTML and CSS"