How do I use Key Sequences and Creating Tables?

Good day! I'm trying to figure out how to do this. I want to be able to create this but can't figure it out. Thank you!

Meeting Title
Length
Timing
Attendees (Required)
Attendees (Optional)
Description

Sorry, I don't understand what you are trying to do. Can you elaborate?

Good afternoon Andreas,

Sorry, and thank you for following up. Basically I'm trying to build a table using the keyboard shortcut feature and while it lets me paste in the table, when I hit save it loses the table formatting (but keeps the bolding).



I'd recommend to create the table with HTML, e.g.

<table>
<tr><td>Meeting Title</td><td></td></tr>
<tr><td>Length</td><td></td></tr>
<tr><td>Timing</td><td></td></tr>
<tr><td>Attendees (Required)</td><td></td></tr>
<tr><td>Attendees (Optional)</td><td></td></tr>
<tr><td>Description</td><td></td></tr>
</table>

Then use the "Paste Format: Interpret as HTML" option

You are AWESOME! Thank you!