SVG rectangle - HTML CSS SVG

HTML CSS examples for SVG:Rectangle

Description

SVG rectangle

Demo Code

ResultView the demo in separate window

<html lang="en">
 <head> 
  <meta charset="UTF-8"> 
 </head> <!--from  w ww  . j  ava2 s . c om-->
 <body> 
  <svg viewbox="0 0 1400 778" xml:space="preserve"> 
   <rect width="1400" height="778" fill="red" /> 
  </svg>  
 </body>
</html>

Related Tutorials