Create SVG rotated text
A simple example of creating a SVG rotated text.
<!DOCTYPE HTML>
<html>
<head>
<style>
body {
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
<svg mlns="http://www.w3.org/2000/svg" height="300" width="300">
<text x="20" y="75" fill="red" transform="rotate(-30 20, 0)">I love Tizen!</text>
</svg>
</body>
</html>