Text Along a Path

by Nivaldo

HTML

<!DOCTYPE html>
  <head>
    <meta charset="utf-8">
</head>
<body>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
    <rect x="0" y="0" width="500" height="500" fill="black"/>
            <path id='menu_path' d="M 80,40 Q 200,85 245,205" stroke="none" fill="black"/>
            <text fill="white">
                <textPath xlink:href="#menu_path">News Info Presse Musik</textPath>
            </text>             
        </svg>  
</body>
</html>

CSS

svg {
    font-size: 15px;
    font-family: monospace;
    height: 500px;
}