Hello I am looking for some working code to create span elements.
My text is simple each word is seperated by space.
I need to create span as follow so that I can lift the code quickly. As mention below each word has unique id as W1, W2, etc.
<p>
<!-- I need to create span as follow so that -->
<span id="W1">I</span>
<span id="W2">need</span>
<span id="W3">to/span>
<span id="W4">create</span>
<span id="W5">span</span>
<span id="W6">as</span>
<span id="W7">follow</span>
<span id="W8">so</span>
<span id="W9">that</span>
</p>
Thanks.
I have MS expression web and vb studio, any tool I can keep locally and keep creating.