-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af46f56
commit 75a7b46
Showing
1 changed file
with
95 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
<h2>Heading</h2> | ||
Some content<br/> | ||
I would like to add another line<br/> | ||
|
||
<h1>Subheading</h1> | ||
Some more content<br/> | ||
Some more lines1<br/> | ||
<dl> | ||
<dd>A line with indent</dd> | ||
<dd><dl> | ||
<dd>A 2-indented line</dd> | ||
<dd>more</dd> | ||
</dl></dd> | ||
<dd>back to 1-indented line</dd> | ||
</dl> | ||
Something here<br/> | ||
|
||
<h3>subsub</h3> | ||
I'm a sub of a sub<br/> | ||
|
||
<h2>New heading</h2> | ||
|
||
This is an image.<br/> | ||
<img src="http://lygon.net/lygonsoftware.png" alt=" Lygon Software"/><br/> | ||
This is some more text<br/> | ||
|
||
This is a link: <a href="http://www.google.com">Google blaah blaahg</a>.<br/> | ||
This is a bold link: <strong><a href="http://www.google.com">Google</a></strong>.<br/> | ||
This is a bold-italic link: <strong><em><a href="http://www.google.com">Google</a></em></strong>.<br/> | ||
This is <strong>bold</strong>, <strong><em>bold-italic</em></strong>, and <em>italic</em><br/> | ||
This here is a link without text <a href="http://lygon.net">http://lygon.net</a><br/> | ||
|
||
Some more lines1<br/> | ||
<dl> | ||
<dd>A line with indent</dd> | ||
<dd><dl> | ||
<dd>A 2-indented line</dd> | ||
<dd>more</dd> | ||
</dl></dd> | ||
<dd>back to 1-indented line</dd> | ||
</dl> | ||
|
||
And a hr thingy here<br/> | ||
<hr/> | ||
<h1>Listings hiar</h1> | ||
|
||
<ol> | ||
<li>First</li> | ||
<li>second | ||
<ol> | ||
<li>Second-First | ||
<ol> | ||
<li>third | ||
<ol> | ||
<li>z</li> | ||
<li>y</li> | ||
<li>x</li> | ||
</ol> | ||
</li> | ||
</ol> | ||
</li> | ||
<li>Second-Second <a href="ftp://www.facebook.com">Facebook FTP</a></li> | ||
<li>Second-Third <a href="http://www.google.com">Google Here</a> </li> | ||
</ol> | ||
</li> | ||
<li>third | ||
<ol> | ||
<li>hax</li> | ||
<li>lol | ||
<ol> | ||
<li>omg</li> | ||
</ol> | ||
</li> | ||
</ol> | ||
</li> | ||
<li>wtf</li> | ||
</ol> | ||
|
||
<ul> | ||
<li>apple</li> | ||
<li>orange | ||
<ul> | ||
<li>banana | ||
<ul> | ||
<li>cactus</li> | ||
<li>dolphin | ||
<ul> | ||
<li>monkey</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
</li> | ||
</ul> |