Week 2- Simple logo in SVG - Business Web Technologies
This shows how to make a simple logo using SVG, an XML format for doing simple graphics that is now an HTML5 recommendation
by Justin Harker
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" </meta>
<title> Example of HTML with SVG </title>
<link rel="stylesheet" href="logo.css" />
</head>
<body>
<svg width="100" height="100" style="background-color:blue">
<circle cx="50" cy="50" r="45" style="fill:yellow"/>
<rect x="10" y="40" width="80" height="20" style="fill:green" />
logo
<polygon points="50,0 100,100 50,50 0,100" style="fill:red" />
</svg>
</body>
</html>