If you use an application like notepad++ (its free - FOSS) then you can open your HTML file and
Find: <div
Replace <p
Then
Find: </div>
Replace </p>
throughout the entire document. Note that I am actually finding/replacing a space after the last character so that it will help discriminate what I am looking for: "<div ". If, however, your div's have no attributes then you may just want to find "<div>
|