Html Draw Circle - Html

How to draw circle using html?

Snippet Code


  
Rate this page :
  [ 0 votes]

Use the following code to draw a circle using html. Enter the desired height, width and radius values in the code.

<style> #circle { width: 100px; height: 100px; -webkit-border-radius: 50px; -moz-border-radius: 50px; border-radius: 50px; border:2px solid red; } </style> <div id="circle"></div>

Tags


Ask Questions

Ask Question