SVG sign logo - HTML CSS SVG

HTML CSS examples for SVG:Path

Description

SVG sign logo

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <title>SVG in text/html</title> 
 </head> <!--from   w  w  w.j ava 2  s  . c o m-->
 <body> 
  <h1>SVG in text/html</h1> 
  <p> 
   <svg height="86" width="90" viewbox="5 9 90 86" style="float: left;"> 
    <path stroke="#F53F0C" stroke-width="10" fill="#F5C60C" stroke-linejoin="round" d="M 10,90 L 90,90 L 50,14 Z" /> 
    <line stroke="black" stroke-width="10" stroke-linecap="round" x1="50" x2="50" y1="45" y2="75" /> 
   </svg> <b>Warning:</b> Remember that ? means that there are two solutions! </p>  
 </body>
</html>

Related Tutorials