Rotate your phone or change to desktop for better experience

Rotate your phone or change to desktop for better experience

1.Program to Demonstrate SVG (Scalable Vector Graphics) Circle.

 

<!DOCTYPE html>

<html>

 

<head>

    <meta charset="utf-8">

    <title>SVG Tag</title>

</head>

 

<body>

    <svg width="200" height="200">

        <circle cx="60" cy="60" r="50" fill="orange" stroke="black" stroke-width="3" />

 

    </svg>

</body>

 

</html>

Post a Comment

0 Comments