Skip to content
This repository was archived by the owner on Apr 7, 2019. It is now read-only.

Commit 0515449

Browse files
committed
adding atoms/lists
1 parent f2df339 commit 0515449

File tree

3 files changed

+38
-0
lines changed

3 files changed

+38
-0
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<div class="text">
2+
<ul>
3+
<li>This is a list item in an unordered list</li>
4+
<li>An unordered list is a list in which the sequence of items is not important. Sometimes, an unordered list is a bulleted list. And this is a long list item in an unordered list that can wrap onto a new line. </li>
5+
<li>
6+
Lists can be nested inside of each other
7+
<ul>
8+
<li>This is a nested list item</li>
9+
<li>This is another nested list item in an unordered list</li>
10+
</ul>
11+
</li>
12+
<li>This is the last list item</li>
13+
</ul>
14+
</div>
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<div class="text">
2+
<ol>
3+
<li>This is a list item in an ordered list</li>
4+
<li>An ordered list is a list in which the sequence of items is important. An ordered list does not necessarily contain sequence characters.</li>
5+
<li>
6+
Lists can be nested inside of each other
7+
<ol>
8+
<li>This is a nested list item</li>
9+
<li>This is another nested list item in an ordered list</li>
10+
</ol>
11+
</li>
12+
<li>This is the last list item</li>
13+
</ol>
14+
</div>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<dl>
2+
<dt>Definition List</dt>
3+
<dd>A number of connected items or names written or printed consecutively, typically one below the other.</dd>
4+
<dt>This is a term.</dt>
5+
<dd>This is the definition of that term, which both live in a <code>dl</code>.</dd>
6+
<dt>Here is another term.</dt>
7+
<dd>And it gets a definition too, which is this line.</dd>
8+
<dt>Here is term that shares a definition with the term below.</dt>
9+
<dd>And it gets a definition too, which is this line.</dd>
10+
</dl>

0 commit comments

Comments
 (0)