Need some help - basic HTML code

Giannis

All-Wheel Wizard
Staff member
Messages
18,058
Name
Giannis
Dear friends I need some help with elementary HTML coding.

I want to create a signature for my Mozilla Thunderbird client, which will contain my basic contact info, more or less in 5 or 6 lines of text, but I need to have these words in both greek and english. So I want to columns with 5 or 6 lines each, the left column being aligned to the left, and the right to the right.

Can somebody please help?

Thanks!
 
Giannis, bunch of ways to do it. Simplest would be using HTML tables:

HTML:
<table>
  <tr>
     <td>foo</td>
     <td align="right">goo</td>
   </tr>
  <tr>
     <td>moo</td>
     <td align="right">noo</td>
   </tr>
</table>

You can try it out here - https://jsfiddle.net/vt2ppn5p/
 
Haha no, thank you. Feels awesome when useless stuff you know actually helps someone.
 
Haha no, thank you. Feels awesome when useless stuff you know actually helps someone.

Couldn't help myself... :D

sunny meme 1.webp
 

Trending content

Latest posts


Back
Top