<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>How to Use SVG in HTML</title>
</head>
<body>
<svg width="100" height="100">
<circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" />
</svg>
</body>
</html>
body {
font-family: Arial,sans-serif;
line-height: 1.6;
margin: 20px;
}
svg {
margin-bottom: 20px;
width: 200px;
height: 200px;
fill: blue;
}
code {
font-family: "Courier New", Courier, monospace;
background-color:#f0f0f0;
padding: 2px 5px;
border-radius: 3px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.