Add lists and tables to your lessons
If you’re in Pro Editor, you can use the following HTML codes to spiffy up your lesson! To check out more cool stuff you can add to your lessons, click here.
Make a bulleted list
Here’s how to do it:
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
The <ul> stands for “unordered list”. It’ll look like this:
- Item 1
- Item 2
- Item 3
Make a numbered list
To make an ordered list, replace the opening and closing <ul> tags above with <ol>. For example:
<ol>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ol>
It will look like this:
- Item 1
- Item 2
- Item 3
Create a simple table
Tables are more complicated than the HTML we’ve previously covered, but once you experiment a little, I’m sure you’ll get the hang of it. You can add text or images in these tables.
Make sure that when you open a tag, you close it, too.
Here’s a code for a two-column, two-row table.
<table>
<tr>
<td>Cell 1</td>
<td>Cell 2</td>
</tr><tr>
<td>Cell 3</td>
<td>Cell 4</td>
</tr>
</table>
Notice how we open and close the <table> tag at the beginning and the end. <tr> opens a new column. <td> creates a new row.
Here’s what it looks like:
| Cell 1 | Cell 2 | Cell 3 | Cell 4 |
Again, I must repeated: Make sure you close all tags. By “close”, I mean the tags with the slashes in them – </td>, </tr> and </table>. If not, you could screw up the entire look of your page – and you definitely don’t want that! I recommend NOT using tables unless you absolutely have to.
Page Author
From Here You Can…
Information
- 76 Views
- 0 Comments
Most Recent Related Content
- Video
- Avatar

- Title
- Using Images from Flickr and Facebook
- Description
- How to copy an image location from Flickr or Facebook to use in discussions, ...
- Author
- Lesson
- Avatar

- Title
- How to: Rich Text Editor
- Body
- The Rich Text Editor is a lesson page creation tool that emulates popular Wor...
- Author
- Lesson
- Avatar

- Title
- Content Sharing
- Body
- Content Sharing Learnhub allows you to share your lessons publicly or priv...
- Author
- Lesson
- Avatar

- Title
- LearnHub for Nuvvo Users
- Body
- forDuring LearnHub’s initial development, we took into account Nuvvo...
- Author
- Lesson
- Avatar

- Title
- LearnHub: Your First 5 Steps
- Body
- LearnHub, created by Savvica Inc., provides is an online learning webs...
- Author
- Lesson
- Avatar

- Title
- How to: Notifications
- Body
- Setting my Notifications:What are notifications?Every time a LearnHub member ...
- Author
- Presentation
- Avatar
- Title
- Creating a Successful Community
- Description
- This presentation offers a few easy steps that will help you on your way to c...
- Author
- Lesson
- Avatar

- Title
- Adding Cool Stuff to your Lessons
- Body
- If you’re creating your lessons in the Rich Text Editor, you shouldn...
- Author