Horje
How to create HTML SVG Rectangle

Design up HTML SVG Rectangle


Example of HTML SVG Rectangle

Follow the Example
index.html
Example: HTML
<svg width="400" height="100">
  <rect width="400" height="100" style="fill:rgb(0,0,255);stroke-width:10;stroke:rgb(0,0,0)" />
</svg>

Output should be:

Example of HTML SVG Rectangle

Full Example of HTML SVG Rectangle

Follow the Example
index.html
Example: HTML
<!DOCTYPE html>
<html>
<body>

<svg width="400" height="100">
  <rect width="400" height="100" 
  style="fill:rgb(0,0,255);stroke-width:10;stroke:rgb(0,0,0)" />
Sorry, your browser does not support inline SVG.
</svg>
 
</body>
</html>

Output should be:

Full Example of HTML SVG Rectangle





Category:
Web Tutorial
Sub Category:
HTML SVG Graphics
Uploaded by:
Admin


Read Article
https://develop.horje.com/learn/1434/reference