Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 1e23f5d

Browse files
author
mrmrs
committed
Updating README file.
Adding tables and other typographic oriented elements.
1 parent 044fc1a commit 1e23f5d

File tree

2 files changed

+64
-2
lines changed

2 files changed

+64
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,13 @@ git push -u origin master
3737

3838
Now your set up to use this in a new project.
3939

40+
4041
# Author
4142
[MRMRS](http://mrmrs.cc "Adam Morse - Designer Developer")
4243

44+
# Reference
45+
[Mozilla HTML element list](http://https://developer.mozilla.org/en-US/docs/Web/Guide/HTML/HTML5/HTML5_element_list "Mozilla HTML element list")
46+
4347
# License
4448
This work is licensed under a [Creative Commons Attribution 3.0 Unported
4549
License](http://creativecommons.org/licenses/by/3.0/ "Creative Commons

index.html

Lines changed: 60 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,64 @@ <h6 class="h6">Sixth header h6</h6>
189189
</fieldset>
190190
</form>
191191
</section>
192+
193+
<section>
194+
<code>
195+
<pre>
196+
sudo ipfw pipe 1 config bw 256KByte/s
197+
sudo ipfw add 1 pipe 1 src-port 3000
198+
</pre>
199+
</code>
200+
</section>
201+
<section>
202+
<h1> Typographacial things</h1>
203+
<small>This is for things like copyright info</small>
204+
<s>Content that isn't accurate or relevant anymore.</s>
205+
<span>Generic span wrapper</span>
206+
<abbr>HTML How to meet ladies</abbr>
207+
<p>This is inline text with <sub>subscript</sub> and <sup>superscript</sup> elements.</p>
208+
<time>6 August, 2010</time>
209+
</section>
210+
<section>
211+
<!--
212+
From the HTML spec (http://www.w3.org/TR/html401/struct/tables.html)
213+
214+
TFOOT must appear before TBODY within a TABLE definition so that user agents can
215+
render the foot before receiving all of the (potentially numerous) rows of data.
216+
The following summarizes which tags are required and which may be omitted:
217+
218+
The TBODY start tag is always required except when the table contains only one
219+
table body and no table head or foot sections. The TBODY end tag may always be
220+
safely omitted.
221+
222+
The start tags for THEAD and TFOOT are required when the table head and foot sections
223+
are present respectively, but the corresponding end tags may always be safely
224+
omitted.
225+
226+
Conforming user agent parsers must obey these rules for reasons of backward
227+
compatibility.
228+
-->
229+
<table>
230+
<thead>
231+
<tr>
232+
<th>ID</th>
233+
<th>Name</th>
234+
<th>Date</th>
235+
<th>Address</th>
236+
</tr>
237+
</thead>
238+
<tfoot>
239+
</tfoot>
240+
<tbody>
241+
<tr>
242+
<td>#999-32ac</dt>
243+
<td>First Name</dt>
244+
<td>13 May, 2013</dt>
245+
<td>999 Spruce Lane, Somewhere, CA 94101</td>
246+
</tr>
247+
</tbody>
248+
</table>
249+
</section>
192250
<footer>
193-
<p>Copyright 2013 Some company name</p>
194-
</footer>
251+
<small>Copyright 2013 Some company name</small>
252+
</footer>

0 commit comments

Comments
 (0)