create account

How to Create a List on a Web Page in Aptana Studio by aminda

View this thread on: hive.blogpeakd.comecency.com
· @aminda · (edited)
$30.14
How to Create a List on a Web Page in Aptana Studio
HTML tags are the code used to format a web page - and two useful tags are ul and ol - unordered and ordered lists.

The beauty of HTML (HyperText Markup Language) code is that, although very simple to use, it produces very effective results. Take, for example, lists of data - these can be displayed horizontally or vertically, but they can be made much more impressive by using either of two HTML tags (the HTML formatting code). These tags are:

- ul - unordered list
- ol - ordered list

By using these tags and their attributes (or properties) the web page designer can produce a web page that will be informative and easy to read for the user.

![image.png](https://res.cloudinary.com/hpiynhbhq/image/upload/v1514893455/newwi0jmxg9tkgjtexor.png)


### UL - the Unordered List

The unordered list:

- uses the ```<ul>``` tag to start the list
- creates list item by using the ```<li>...</li>``` tags
- uses the ```</ul>``` tag to finish the list

Take for instance a list of planets:

- Mercury
- Venus
- Earth

These can be displayed as:

- Mercury
- Venus
- Earth

and the HTML code to do that would be:
```
<ul>
<li>Mercury</li>
<li>Venus</li>
<li>Earth</li>
</ul>
```
However, before continuing, the web page designer may want to change the look and feel of the list.

### The Unordered List Bullet Type Attribute

The unordered list shows a black disc by default, but the web page designer can change this by changing the bullet type:
```
<ul type=disc>
<ul type=circle>
<ul type=square>
```
And it's worth noting that the type can be applied to individual list items as well as the list itself.

### OL - the Ordered List

The ordered list is used in a similar way to the unordered list but the displayed list format is different:

- Mercury
- Venus
- Earth

The only change HTML code is replacing ```<ul>``` with ```<ol>``` and ```</ul>``` with ```</ol>```:
```
<ol>
<li>Mercury</li>
<li>Venus</li>
<li>Earth</li>
</ol>
```
And the end result is a list of planets in order of distance from the sun.

### The Types of Ordered List

Ordered lists have a type attribute as well as unordered lists, but again, the end result is slightly different:
```
i. i - <ol type=i>
ii. I - <ol type=I>
iii. a - <ol type=a>
iv. A - <ol type=A>
```
However, it's not just the ordered list's type that can be changed.

### The Start of a Ordered List

By default the start point of an ordered list will always be 1, a, A, i or I according to the type attribute, however, the starting number (or letter) can be changed as well, for example:
```
<ol start="-5">
<li>Five
<li>Four
<li>Three
<li>Two
<li>One
<li>Lift Off!
</ol>
```
Which will appear on the screen as:
```
-5. Five
-4. Four
-3. Three
-2. Two
-1. One
0. Lift Off!
```

Having seen how ordered and unordered lists can be used on their own, the final step is to combine them to improve the user experience.

### Nested Lists

Nested lists can be used to supply more information to the web page user and to group information, for example:

- Inner Planets:
1- Mercury
2- Venus
3- Earth
4- Mars
- Outer Planets
Jupiter
6- Saturn
7- Uranus
8- Neptune
9- Pluto

Which is achieved by combining unordered and ordered lists, as well as setting the ordered list's start attribute:
```
<ul>
<li>Inner Planets:
<ol>
<li>Mercury</li>
<li>Venus</li>
<li>Earth</li>
<li>Mars</li>
</ol>
</li>
<li>Outer Planets
<ol start=5>
<li>Jupiter</li>
<li>Saturn</li>
<li>Uranus</li>
<li>Neptune</li>
<li>Pluto</li>
</ol>
</li>
</ul>
```
And so, the web page designer can produce a professional looking output just by using those few pieces of HTML code.

### Summary

The web designer can produce two types of lists on a web page:

- an unordered list
- an ordered list

Both types of list have types:
**unordered:**
```
<ul type=disc>
<ul type=circle>
<ul type=square>
```
**ordered:**
```
<ol type=i>
<ol type=I>
<ol type=a>
<ol type=A>
```
And the ordered list can be given a starting point other than the default 1, a, i, A or I. When all of the techniques are combined then the web designer can display information in a way that their users will find easy to understand.

<br /><hr/><em>Posted on <a href="https://utopian.io/utopian-io/@aminda/how-to-create-a-list-on-a-web-page-in-aptana-studio">Utopian.io -  Rewarding Open Source Contributors</a></em><hr/>
👍  , , , , , , , , , ,
properties (23)
authoraminda
permlinkhow-to-create-a-list-on-a-web-page-in-aptana-studio
categoryutopian-io
json_metadata"{"community":"utopian","app":"utopian/1.0.0","format":"markdown","repository":{"score":19.113726,"default_branch":"development","watchers":523,"open_issues":97,"forks":171,"license":{"url":null,"spdx_id":null,"name":"Other","key":"other"},"open_issues_count":97,"archived":false,"mirror_url":null,"forks_count":171,"has_pages":false,"has_wiki":true,"has_downloads":true,"has_projects":true,"has_issues":true,"language":"JavaScript","watchers_count":523,"stargazers_count":523,"size":280322,"homepage":"http://aptana.com/products/studio3","svn_url":"https://github.com/aptana/studio3","clone_url":"https://github.com/aptana/studio3.git","ssh_url":"git@github.com:aptana/studio3.git","git_url":"git://github.com/aptana/studio3.git","pushed_at":"2017-12-22T21:54:56Z","updated_at":"2018-01-01T15:06:54Z","created_at":"2009-10-15T23:46:08Z","deployments_url":"https://api.github.com/repos/aptana/studio3/deployments","releases_url":"https://api.github.com/repos/aptana/studio3/releases{/id}","labels_url":"https://api.github.com/repos/aptana/studio3/labels{/name}","notifications_url":"https://api.github.com/repos/aptana/studio3/notifications{?since,all,participating}","milestones_url":"https://api.github.com/repos/aptana/studio3/milestones{/number}","pulls_url":"https://api.github.com/repos/aptana/studio3/pulls{/number}","issues_url":"https://api.github.com/repos/aptana/studio3/issues{/number}","downloads_url":"https://api.github.com/repos/aptana/studio3/downloads","archive_url":"https://api.github.com/repos/aptana/studio3/{archive_format}{/ref}","merges_url":"https://api.github.com/repos/aptana/studio3/merges","compare_url":"https://api.github.com/repos/aptana/studio3/compare/{base}...{head}","contents_url":"https://api.github.com/repos/aptana/studio3/contents/{+path}","issue_comment_url":"https://api.github.com/repos/aptana/studio3/issues/comments{/number}","comments_url":"https://api.github.com/repos/aptana/studio3/comments{/number}","git_commits_url":"https://api.github.com/repos/aptana/studio3/git/commits{/sha}","commits_url":"https://api.github.com/repos/aptana/studio3/commits{/sha}","subscription_url":"https://api.github.com/repos/aptana/studio3/subscription","subscribers_url":"https://api.github.com/repos/aptana/studio3/subscribers","contributors_url":"https://api.github.com/repos/aptana/studio3/contributors","stargazers_url":"https://api.github.com/repos/aptana/studio3/stargazers","languages_url":"https://api.github.com/repos/aptana/studio3/languages","statuses_url":"https://api.github.com/repos/aptana/studio3/statuses/{sha}","trees_url":"https://api.github.com/repos/aptana/studio3/git/trees{/sha}","git_refs_url":"https://api.github.com/repos/aptana/studio3/git/refs{/sha}","git_tags_url":"https://api.github.com/repos/aptana/studio3/git/tags{/sha}","blobs_url":"https://api.github.com/repos/aptana/studio3/git/blobs{/sha}","tags_url":"https://api.github.com/repos/aptana/studio3/tags","branches_url":"https://api.github.com/repos/aptana/studio3/branches{/branch}","assignees_url":"https://api.github.com/repos/aptana/studio3/assignees{/user}","events_url":"https://api.github.com/repos/aptana/studio3/events","issue_events_url":"https://api.github.com/repos/aptana/studio3/issues/events{/number}","hooks_url":"https://api.github.com/repos/aptana/studio3/hooks","teams_url":"https://api.github.com/repos/aptana/studio3/teams","collaborators_url":"https://api.github.com/repos/aptana/studio3/collaborators{/collaborator}","keys_url":"https://api.github.com/repos/aptana/studio3/keys{/key_id}","forks_url":"https://api.github.com/repos/aptana/studio3/forks","url":"https://api.github.com/repos/aptana/studio3","fork":false,"description":"This repository contains the code for core components of Aptana Studio 3. ","html_url":"https://github.com/aptana/studio3","private":false,"owner":{"site_admin":false,"type":"Organization","received_events_url":"https://api.github.com/users/aptana/received_events","events_url":"https://api.github.com/users/aptana/events{/privacy}","repos_url":"https://api.github.com/users/aptana/repos","organizations_url":"https://api.github.com/users/aptana/orgs","subscriptions_url":"https://api.github.com/users/aptana/subscriptions","starred_url":"https://api.github.com/users/aptana/starred{/owner}{/repo}","gists_url":"https://api.github.com/users/aptana/gists{/gist_id}","following_url":"https://api.github.com/users/aptana/following{/other_user}","followers_url":"https://api.github.com/users/aptana/followers","html_url":"https://github.com/aptana","url":"https://api.github.com/users/aptana","gravatar_id":"","avatar_url":"https://avatars2.githubusercontent.com/u/31783?v=4","id":31783,"login":"aptana"},"full_name":"aptana/studio3","name":"studio3","id":339002},"pullRequests":[],"platform":"github","type":"tutorials","tags":["utopian-io","opensource","tutorial","tutorials","howto"],"users":["aminda"],"links":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1514893455/newwi0jmxg9tkgjtexor.png"],"image":["https://res.cloudinary.com/hpiynhbhq/image/upload/v1514893455/newwi0jmxg9tkgjtexor.png"],"moderator":{"account":"manishmike10","reviewed":true,"pending":false,"flagged":false}}"
created2018-01-02 11:40:12
last_update2018-01-06 22:15:00
depth0
children5
last_payout2018-01-09 11:40:12
cashout_time1969-12-31 23:59:59
total_payout_value21.118 HBD
curator_payout_value9.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4,293
author_reputation1,342,899,866,910
root_title"How to Create a List on a Web Page in Aptana Studio"
beneficiaries
0.
accountutopian.pay
weight2,500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,542,216
net_rshares3,100,206,425,813
author_curate_reward""
vote details (11)
@arcange ·
WARNING - The message you received from @tripadvisor.com is a CONFIRMED SCAM! DO NOT FOLLOW the instruction in the memo! For more information, read this post: https://steemit.com/steemit/@arcange/scammer-reported-tripadvisor-com
properties (22)
authorarcange
permlinkre-how-to-create-a-list-on-a-web-page-in-aptana-studio-20180102t221128000z
categoryutopian-io
json_metadata{"image":["http://i.cubeupload.com/d1Dr28.png"]}
created2018-01-02 21:11:24
last_update2018-01-02 21:11:24
depth1
children0
last_payout2018-01-09 21:11:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length228
author_reputation1,148,259,075,896,135
root_title"How to Create a List on a Web Page in Aptana Studio"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,636,181
net_rshares0
@eatsrewards ·
$0.43
Free vote for you! Yay!
👍  ,
properties (23)
authoreatsrewards
permlinkeatsrewards-re-amindahow-to-create-a-list-on-a-web-page-in-aptana-studio
categoryutopian-io
json_metadata""
created2018-01-02 12:05:33
last_update2018-01-02 12:05:33
depth1
children0
last_payout2018-01-09 12:05:33
cashout_time1969-12-31 23:59:59
total_payout_value0.432 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation6,338,926,820,750
root_title"How to Create a List on a Web Page in Aptana Studio"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,545,841
net_rshares36,437,803,125
author_curate_reward""
vote details (2)
@manishmike10 ·
Thank you for the contribution. It has been approved.

You can contact us on [Discord](https://discord.gg/UCvqCsx).
**[[utopian-moderator]](https://utopian.io/moderators)**
properties (22)
authormanishmike10
permlinkre-aminda-how-to-create-a-list-on-a-web-page-in-aptana-studio-20180103t151606912z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-01-03 15:16:12
last_update2018-01-03 15:16:12
depth1
children0
last_payout2018-01-10 15:16:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length172
author_reputation20,399,732,899,016
root_title"How to Create a List on a Web Page in Aptana Studio"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,802,191
net_rshares0
@tripadvisor.com ·
 
**Get your post resteemed over 90000+ followers and get upto $19+ value Upvote. Your post will skyrocket and give you maximum exposer.** 

> **Send 1 SBD or STEEM to steemitrobot with your post url you will get your post share over 30000+ followers and 1 upvote $1.5+ value. Plus Get**

> **Send 3 SBD or STEEM to steemitrobot  with your post url you will get your post share over 60000+ followers and 1 upvote $5+ value. Plus Get**

> **Send 5 SBD or STEEM to steemitrobot with your post url you will get your post share over 60000+ followers and 1 upvote $9+ value. Plus Get**

> **Send 6 SBD or STEEM to steemitrobot with your post url you will get your post share over 90000+ followers and 1 upvote $11+ value. Plus Get**

> **Send 10 SBD or STEEM to steemitrobot with your post url you will get your post share over 90000+ followers and 1 upvote $19+ value. Plus Get**

See our all pakages at: http://www.whaleboostup.ml
properties (22)
authortripadvisor.com
permlinkre-aminda-how-to-create-a-list-on-a-web-page-in-aptana-studio-20180102t115116570z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"busy","app":"busy/2.2.0"}
created2018-01-02 11:40:39
last_update2018-01-02 11:40:39
depth1
children0
last_payout2018-01-09 11:40:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length927
author_reputation-905,234,436,028
root_title"How to Create a List on a Web Page in Aptana Studio"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,542,296
net_rshares0
@utopian-io ·
### Hey @aminda I am @utopian-io. I have just upvoted you!
#### Achievements
- You have less than 500 followers. Just gave you a gift to help you succeed!
- Seems like you contribute quite often. AMAZING!
#### Suggestions
- Contribute more often to get higher and higher rewards. I wish to see you often!
- Work on your followers to increase the votes/rewards. I follow what humans do and my vote is mainly based on that. Good luck!
#### Get Noticed!
- Did you know project owners can manually vote with their own voting power or by voting power delegated to their projects? Ask the project owner to review your contributions!
#### Community-Driven Witness!
I am the first and only Steem Community-Driven Witness. <a href="https://discord.gg/zTrEMqB">Participate on Discord</a>. Lets GROW TOGETHER!
- <a href="https://v2.steemconnect.com/sign/account-witness-vote?witness=utopian-io&approve=1">Vote for my Witness With SteemConnect</a>
- <a href="https://v2.steemconnect.com/sign/account-witness-proxy?proxy=utopian-io&approve=1">Proxy vote to Utopian Witness with SteemConnect</a>
- Or vote/proxy on <a href="https://steemit.com/~witnesses">Steemit Witnesses</a>

[![mooncryption-utopian-witness-gif](https://steemitimages.com/DQmYPUuQRptAqNBCQRwQjKWAqWU3zJkL3RXVUtEKVury8up/mooncryption-s-utopian-io-witness-gif.gif)](https://steemit.com/~witnesses)

**Up-vote this comment to grow my power and help Open Source contributions like this one. Want to chat? Join me on Discord https://discord.gg/Pc8HG9x**
properties (22)
authorutopian-io
permlinkre-aminda-how-to-create-a-list-on-a-web-page-in-aptana-studio-20180104t072339473z
categoryutopian-io
json_metadata{"tags":["utopian-io"],"community":"utopian","app":"utopian/1.0.0"}
created2018-01-04 07:23:39
last_update2018-01-04 07:23:39
depth1
children0
last_payout2018-01-11 07:23:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,504
author_reputation152,955,367,999,756
root_title"How to Create a List on a Web Page in Aptana Studio"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id26,969,315
net_rshares0