Skip to content

Commit 219651a

Browse files
author
mrmrs
committed
Adds footer.
1 parent 628260f commit 219651a

File tree

1 file changed

+48
-3
lines changed

1 file changed

+48
-3
lines changed

index.html

Lines changed: 48 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,14 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
66

7+
<!-- Set the title of your site here -->
78
<title> HTML5 Patterns </title>
9+
810
<meta name="author" content="mrmrs">
911
<meta name="description" content="Common HTML5 patterns I use.">
10-
1112
<meta name="viewport" content="width=device-width, initial-scale=1">
1213

14+
<!-- Link to your stylesheet here -->
1315
<link rel="stylesheet" href="css/i.css">
1416

1517
<!-- Favicons and Touch Device Icons -->
@@ -37,7 +39,9 @@
3739
<ul>
3840
<li> <a href="#" title="Home">Home</a> </li>
3941
<li> <a href="#" title="About">About</a> </li>
42+
<li> <a href="#" title="Sign Up">Sign Up</a> </li>
4043
<li> <a href="#" title="Contact">Contact</a> </li>
44+
<li> <a href="#" title="Careers">Careers</a> </li>
4145
</ul>
4246
</nav>
4347
</header>
@@ -90,13 +94,13 @@ <h6 class="h6">Sixth header h6</h6>
9094
praesentium voluptatum deleniti atque corrupti quos.
9195
</p>
9296
</section>
93-
97+
<hr />
9498
<section>
9599
<h1>Links</h1>
96100
<a href="#" class="link" title="Sample text link">Sample text link</a>
97101
<a href="#" class="link btn" title="Sample button link">Sample button link</a>
98102
</section>
99-
103+
<hr />
100104
<section>
101105
<h1 class="h1">Lists</h1>
102106
<ul class="list-horizontal">
@@ -192,6 +196,7 @@ <h1 class="h1">Lists</h1>
192196
</section>
193197

194198
<section>
199+
<h1>Forms</h1>
195200
<form>
196201
<fieldset>
197202
<!--
@@ -273,7 +278,9 @@ <h1>Buttons</h1>
273278
<button class="btn">A button</button>
274279
<button class="btn--large">A large button</button>
275280
</section>
281+
<hr />
276282
<section>
283+
<h1>An Example Article</h1>
277284
<article>
278285
<h1>Title</h1>
279286
<p class="intro">
@@ -308,15 +315,52 @@ <h1>Title</h1>
308315
</p>
309316
</article>
310317
</section>
318+
<hr />
311319

312320
<section>
321+
<h1>Code examples</h1>
313322
<code>
314323
<pre>
315324
sudo ipfw pipe 1 config bw 256KByte/s
316325
sudo ipfw add 1 pipe 1 src-port 3000
317326
</pre>
318327
</code>
319328
</section>
329+
<hr />
330+
<section>
331+
<h1>Footer</h1>
332+
<footer>
333+
<p>Copyright 2013. Made with love by <a href="http://mrmrs.cc" title="MRMRS - Designer">mrmrs</a>.</p>
334+
<ul>
335+
<li>
336+
<a href="#">Home</a>
337+
</li>
338+
<li>
339+
<a href="#">Contact</a>
340+
</li>
341+
<li>
342+
<a href="#">Jobs</a>
343+
</li>
344+
</ul>
345+
<ul class="social-links">
346+
<li>
347+
<a href="http://twitter.com" title=" on Twitter">Twitter</a>
348+
</li>
349+
<li>
350+
<a href="http://pinterest.com" title=" on Pinterest">Pinterest</a>
351+
</li>
352+
<li>
353+
<a href="http://instagram.com" title=" on Instagram">Instagram</a>
354+
</li>
355+
<li>
356+
<a href="http://dribbbble.com" title=" on Dribbble">Dribbble</a>
357+
</li>
358+
<li>
359+
<a href="http://github.com" title=" on Github">Github</a>
360+
</li>
361+
</ul>
362+
</footer>
363+
</section>
320364

321365
<section>
322366
<h1>New hawtness</h1>
@@ -379,6 +423,7 @@ <h1>Random Stuff</h1>
379423
</samp>
380424
</section>
381425
<section>
426+
<h1>Tables</h1>
382427
<!--
383428
From the HTML spec (http://www.w3.org/TR/html401/struct/tables.html)
384429

0 commit comments

Comments
 (0)