+ 1
Please, how do i insert a text into a shape
4 Antworten
+ 2
https://code.sololearn.com/WA9A69a19a18
<!-- Created by Jasper P Samuel -->
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel="stylesheet" href="example.css"></link>
<body>
<svg align="center" height="1000" width="200" fill="orange">
<rect height="100" width="200" fill="orange"draggable="true">
<animate attributename="x" from="0" to="30" dur="3s" fill="freeze" repeatcount="indefinite"></animate></rect>
<text x="50" y="50" font-family="Verdana" font-size="20" fill="blue">SoloLearn</text>
</svg>
</body>
</html>
+ 4
Jasper,
Please tag a relevant language (HTML) rather than your name : )
+ 2
Thanks a lot guys
Am so grateful for your help