Hello everyone.
I am creating 2 lists in a word document using paragraphs (small program is attached).
But I need to create those 2 lists like the following html:
You can try the html code here:
I would appreciate any ideas or help to be able to create the textarea of the html code in the Word document
Thanks in advance
I am creating 2 lists in a word document using paragraphs (small program is attached).
But I need to create those 2 lists like the following html:
HTML:
<!DOCTYPE html>
<html>
<head>
<style>
.twoTexts {
writing-mode: vertical-rl;;
}
</style>
</head>
<body>
<table border-collapse: collapse; width: 100%; >
<textarea class="twoTexts" rows="30" cols="23">
First line (textarea 1)
Line 2
Line 3
Line 4
Line 5
Line 6
Line 7
Line 8
Line 9
Last line
</textarea>
<textarea class="twoTexts" rows="30" cols="23">
First line (textarea 2)
Line 12
Line 13
Line 14
Line 15
Line 16
Line 17
Line 18
Line 19
Last line
</textarea>
</table>
</body>
</html>
You can try the html code here:
I would appreciate any ideas or help to be able to create the textarea of the html code in the Word document
Thanks in advance
Attachments
Last edited: