Summary -

In this topic, we described about the SVG Logo with detailed example.

<svg> with <ellipse> element used to create a shape that looks like logo.

Example -

Below example describes about how to create logo.
<!DOCTYPE html>
<html>
   	<head> 
      	<title>SVG Graphics</title>
   </head>
   <body>
      	<svg width="300" height="120">
        	<ellipse cx = "110" cy = "60" rx = "110" ry = "60" 
					fill = "orange" />
         	<text fill="red" font-size="20" 
					font-family="Cavolini Condensed" x="40" 
					y="70">TutorialsCampus</text>
      	</svg>
   	</body>
</html>

Output -

TutorialsCampus