diff --git a/example/README.md b/example/README.md
new file mode 100644
index 0000000..8206951
--- /dev/null
+++ b/example/README.md
@@ -0,0 +1,14 @@
+## Commands
+
+recompile css
+```sh
+tailwindcss -i ./content/css/main.css -o ./content/css/mini.css --minify
+```
+
+build, serve and watch
+```sh
+cabal run site -- watch
+```
+
+
+
diff --git a/example/content/css/custom.css b/example/content/css/custom.css
new file mode 100644
index 0000000..385ce1b
--- /dev/null
+++ b/example/content/css/custom.css
@@ -0,0 +1,34 @@
+.components-flex {
+ display: flex;
+ gap: 1.4em;
+ flex-direction: row;
+ align-items: center;
+ justify-content: center;
+}
+
+.components-grid {
+ display: grid;
+ grid-column-gap: 1.4em;
+ grid-template-columns: auto;
+ grid-template-rows: auto;
+ align-items: center;
+ justify-content: center;
+}
+
+.image-grid {
+ display: grid;
+ grid-template-rows: auto;
+ display: grid;
+ grid-gap: 1em;
+ grid-template-rows: auto;
+ grid-template-columns: repeat(
+ auto-fit,
+ minmax(calc(var(--page-width) / 12), 1fr)
+ );
+}
+
+@media only screen and (min-width: 45em) {
+ .components-grid {
+ grid-template-columns: 3fr 9fr;
+ }
+}
diff --git a/example/content/css/main.css b/example/content/css/main.css
new file mode 100644
index 0000000..3713c15
--- /dev/null
+++ b/example/content/css/main.css
@@ -0,0 +1,10 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+@font-face {
+ /* Set in tailwindconfig */
+ font-family: "jetbrains-mono";
+ src: local("jetbrains-mono"),
+ url("/fonts/JetBrainsMono-Medium.woff2") format("woff2");
+}
\ No newline at end of file
diff --git a/example/content/css/mini.css b/example/content/css/mini.css
new file mode 100644
index 0000000..6c19162
--- /dev/null
+++ b/example/content/css/mini.css
@@ -0,0 +1 @@
+/*! tailwindcss v3.3.2 | MIT License | https://tailwindcss.com*/*,:after,:before{box-sizing:border-box;border:0 solid #e5e7eb}:after,:before{--tw-content:""}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:jetbrains-mono;font-feature-settings:normal;font-variation-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:initial}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:initial;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:initial}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{opacity:1;color:#9ca3af}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*,::backdrop,:after,:before{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:#3b82f680;--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}@media (min-width:1536px){.container{max-width:1536px}}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.absolute{position:absolute}.relative{position:relative}.inset-y-0{top:0;bottom:0}.left-0{left:0}.right-0{right:0}.z-10{z-index:10}.mx-auto{margin-left:auto;margin-right:auto}.ml-3{margin-left:.75rem}.mt-2{margin-top:.5rem}.block{display:block}.flex{display:flex}.inline-flex{display:inline-flex}.table{display:table}.grid{display:grid}.hidden{display:none}.h-16{height:4rem}.h-6{height:1.5rem}.h-8{height:2rem}.w-48{width:12rem}.w-6{width:1.5rem}.w-8{width:2rem}.w-auto{width:auto}.max-w-7xl{max-width:80rem}.flex-1{flex:1 1 0%}.flex-shrink-0{flex-shrink:0}.origin-top-right{transform-origin:top right}.scale-100{--tw-scale-x:1;--tw-scale-y:1}.scale-100,.scale-95{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.scale-95{--tw-scale-x:.95;--tw-scale-y:.95}.transform{transform:translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.flex-row{flex-direction:row}.flex-col{flex-direction:column}.items-center{align-items:center}.justify-center{justify-content:center}.justify-between{justify-content:space-between}.justify-around{justify-content:space-around}.gap-2{gap:.5rem}.gap-4{gap:1rem}.space-x-4>:not([hidden])~:not([hidden]){--tw-space-x-reverse:0;margin-right:calc(1rem*var(--tw-space-x-reverse));margin-left:calc(1rem*(1 - var(--tw-space-x-reverse)))}.space-y-1>:not([hidden])~:not([hidden]){--tw-space-y-reverse:0;margin-top:calc(.25rem*(1 - var(--tw-space-y-reverse)));margin-bottom:calc(.25rem*var(--tw-space-y-reverse))}.rounded-full{border-radius:9999px}.rounded-md{border-radius:.375rem}.border{border-width:1px}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246/var(--tw-bg-opacity))}.bg-gray-800{--tw-bg-opacity:1;background-color:rgb(31 41 55/var(--tw-bg-opacity))}.bg-gray-900{--tw-bg-opacity:1;background-color:rgb(17 24 39/var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255/var(--tw-bg-opacity))}.p-1{padding:.25rem}.p-2{padding:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.px-3{padding-left:.75rem;padding-right:.75rem}.px-4{padding-left:1rem;padding-right:1rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.py-8{padding-top:2rem;padding-bottom:2rem}.pb-3{padding-bottom:.75rem}.pr-2{padding-right:.5rem}.pt-2{padding-top:.5rem}.text-3xl{font-size:1.875rem;line-height:2.25rem}.text-6xl{font-size:3.75rem;line-height:1}.text-base{font-size:1rem;line-height:1.5rem}.text-sm{font-size:.875rem;line-height:1.25rem}.font-bold{font-weight:700}.font-medium{font-weight:500}.italic{font-style:italic}.text-gray-300{--tw-text-opacity:1;color:rgb(209 213 219/var(--tw-text-opacity))}.text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175/var(--tw-text-opacity))}.text-gray-700{--tw-text-opacity:1;color:rgb(55 65 81/var(--tw-text-opacity))}.text-white{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.opacity-0{opacity:0}.opacity-100{opacity:1}.shadow-lg{--tw-shadow:0 10px 15px -3px #0000001a,0 4px 6px -4px #0000001a;--tw-shadow-colored:0 10px 15px -3px var(--tw-shadow-color),0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow,0 0 #0000),var(--tw-ring-shadow,0 0 #0000),var(--tw-shadow)}.ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.ring-black{--tw-ring-opacity:1;--tw-ring-color:rgb(0 0 0/var(--tw-ring-opacity))}.ring-opacity-5{--tw-ring-opacity:0.05}.transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(.4,0,.2,1);transition-duration:.15s}.duration-100{transition-duration:.1s}.duration-75{transition-duration:75ms}.ease-in{transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-out{transition-timing-function:cubic-bezier(0,0,.2,1)}@font-face{font-family:jetbrains-mono;src:local("jetbrains-mono"),url(/fonts/JetBrainsMono-Medium.woff2) format("woff2")}.hover\:bg-gray-700:hover{--tw-bg-opacity:1;background-color:rgb(55 65 81/var(--tw-bg-opacity))}.hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255/var(--tw-text-opacity))}.focus\:outline-none:focus{outline:2px solid #0000;outline-offset:2px}.focus\:ring-2:focus{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.focus\:ring-inset:focus{--tw-ring-inset:inset}.focus\:ring-white:focus{--tw-ring-opacity:1;--tw-ring-color:rgb(255 255 255/var(--tw-ring-opacity))}.focus\:ring-offset-2:focus{--tw-ring-offset-width:2px}.focus\:ring-offset-gray-800:focus{--tw-ring-offset-color:#1f2937}@media (min-width:640px){.sm\:static{position:static}.sm\:inset-auto{inset:auto}.sm\:ml-6{margin-left:1.5rem}.sm\:block{display:block}.sm\:hidden{display:none}.sm\:flex-row{flex-direction:row}.sm\:items-stretch{align-items:stretch}.sm\:justify-start{justify-content:flex-start}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pr-0{padding-right:0}}@media (min-width:768px){.md\:gap-8{gap:2rem}}@media (min-width:1024px){.lg\:block{display:block}.lg\:hidden{display:none}.lg\:px-8{padding-left:2rem;padding-right:2rem}}
\ No newline at end of file
diff --git a/site/css/normalize.css b/example/content/css/normalize.css
similarity index 100%
rename from site/css/normalize.css
rename to example/content/css/normalize.css
diff --git a/site/css/terminal.css b/example/content/css/terminal.css
similarity index 100%
rename from site/css/terminal.css
rename to example/content/css/terminal.css
diff --git a/site/css/terminal.min.css b/example/content/css/terminal.min.css
similarity index 100%
rename from site/css/terminal.min.css
rename to example/content/css/terminal.min.css
diff --git a/example/content/fonts/JetBrainsMono-Bold.woff2 b/example/content/fonts/JetBrainsMono-Bold.woff2
new file mode 100644
index 0000000..4917f43
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-Bold.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-BoldItalic.woff2 b/example/content/fonts/JetBrainsMono-BoldItalic.woff2
new file mode 100644
index 0000000..536d3f7
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-BoldItalic.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-ExtraBold.woff2 b/example/content/fonts/JetBrainsMono-ExtraBold.woff2
new file mode 100644
index 0000000..8f88c54
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-ExtraBold.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-ExtraBoldItalic.woff2 b/example/content/fonts/JetBrainsMono-ExtraBoldItalic.woff2
new file mode 100644
index 0000000..d1478ba
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-ExtraBoldItalic.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-ExtraLight.woff2 b/example/content/fonts/JetBrainsMono-ExtraLight.woff2
new file mode 100644
index 0000000..b97239f
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-ExtraLight.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-ExtraLightItalic.woff2 b/example/content/fonts/JetBrainsMono-ExtraLightItalic.woff2
new file mode 100644
index 0000000..be01aac
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-ExtraLightItalic.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-Italic.woff2 b/example/content/fonts/JetBrainsMono-Italic.woff2
new file mode 100644
index 0000000..d60c270
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-Italic.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-Light.woff2 b/example/content/fonts/JetBrainsMono-Light.woff2
new file mode 100644
index 0000000..6538498
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-Light.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-LightItalic.woff2 b/example/content/fonts/JetBrainsMono-LightItalic.woff2
new file mode 100644
index 0000000..66ca3d2
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-LightItalic.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-Medium.woff2 b/example/content/fonts/JetBrainsMono-Medium.woff2
new file mode 100644
index 0000000..669d04c
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-Medium.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-MediumItalic.woff2 b/example/content/fonts/JetBrainsMono-MediumItalic.woff2
new file mode 100644
index 0000000..80cfd15
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-MediumItalic.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-Regular.woff2 b/example/content/fonts/JetBrainsMono-Regular.woff2
new file mode 100644
index 0000000..40da427
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-Regular.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-SemiBold.woff2 b/example/content/fonts/JetBrainsMono-SemiBold.woff2
new file mode 100644
index 0000000..5ead7b0
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-SemiBold.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-SemiBoldItalic.woff2 b/example/content/fonts/JetBrainsMono-SemiBoldItalic.woff2
new file mode 100644
index 0000000..c5dd294
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-SemiBoldItalic.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-Thin.woff2 b/example/content/fonts/JetBrainsMono-Thin.woff2
new file mode 100644
index 0000000..17270e4
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-Thin.woff2 differ
diff --git a/example/content/fonts/JetBrainsMono-ThinItalic.woff2 b/example/content/fonts/JetBrainsMono-ThinItalic.woff2
new file mode 100644
index 0000000..a643215
Binary files /dev/null and b/example/content/fonts/JetBrainsMono-ThinItalic.woff2 differ
diff --git a/example/content/index.html b/example/content/index.html
index 6dd191d..0240e11 100644
--- a/example/content/index.html
+++ b/example/content/index.html
@@ -1,16 +1,3 @@
----
-title: Home
----
-
-
Welcome
-
-
-
-Welcome to my blog!
-
-I've reproduced a list of recent posts here for your reading pleasure:
-
-Posts
-$partial("templates/post-list.html")$
-
-…or you can find more in the archives.
+
+ Hello world!
+
diff --git a/example/content/scripts/nav.js b/example/content/scripts/nav.js
new file mode 100644
index 0000000..83347fd
--- /dev/null
+++ b/example/content/scripts/nav.js
@@ -0,0 +1,16 @@
+document.addEventListener('DOMContentLoaded', function () {
+ // Get all "navbar-burger" elements
+ var $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
+ // Check if there are any navbar burgers
+ if ($navbarBurgers.length > 0) {
+ // Add a click event on each of them
+ $navbarBurgers.forEach(function ($el) {
+ $el.addEventListener('click', function () {
+ // Get the "main-nav" element
+ var $target = document.getElementById('main-nav');
+ // Toggle the class on "main-nav"
+ $target.classList.toggle('hidden');
+ });
+ });
+ }
+});
diff --git a/example/content/try_hakyll.html b/example/content/try_hakyll.html
new file mode 100644
index 0000000..6dd191d
--- /dev/null
+++ b/example/content/try_hakyll.html
@@ -0,0 +1,16 @@
+---
+title: Home
+---
+
+Welcome
+
+
+
+Welcome to my blog!
+
+I've reproduced a list of recent posts here for your reading pleasure:
+
+Posts
+$partial("templates/post-list.html")$
+
+…or you can find more in the archives.
diff --git a/example/content/try_terminal.html b/example/content/try_terminal.html
new file mode 100644
index 0000000..3e80154
--- /dev/null
+++ b/example/content/try_terminal.html
@@ -0,0 +1,839 @@
+---
+title: Kompact.io
+---
+
+
+
+
⟨K⟩
+
+
+
+
+ ~> Lean dapp development
+
+
+
+
+
+
+
+A modern and minimal CSS framework for terminal lovers. ==>
+
+Project Goals
+
+ Terminal CSS has no overhead and is lightweight
+ (~ 3k gzip). The source is written in
+ pure css to be accessible for everybody and easy to
+ contribute.
+
+Markdown ❤️ Terminal CSS
+
+ It's perfect for your personal website, blog, or
+ side project.
+
+How to use
+
+ When using something like Webpack just install with
+ npm i terminal.css
.
+
+import 'terminal.css'
+
+ Terminal CSS is also available via
+ CDN
+
+<link rel="stylesheet" href="https://unpkg.com/terminal.css@0.7.2/dist/terminal.min.css" />
+Themes
+
+ To create your own theme just open the dev-tools and edit the CSS
+ Variables. Copy and paste it to your website. Done!
+
+
+
+Contributors
+
+
+
+With ❤️ by Jonas D.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ - This is a list item
+ - So is this - there could be more
+ -
+ Make sure to style list items to:
+
+ - Not forgetting child list items
+ - Not forgetting child list items
+ - Not forgetting child list items
+ - Not forgetting child list items
+
+
+ - A couple more
+ - Top-level list items
+
+ Don't forget Ordered lists:
+
+ - Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
+ -
+ Aliquam tincidunt mauris eu risus
+
+ -
+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
+
+ - Aliquam tincidunt mauris eu risus.
+
+
+ - Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
+ - Aliquam tincidunt mauris eu risus.
+
+ Description lists are also included.
+
+ - Description list title 01
+ - Description list description 01
+ - Description list title 02
+ - Description list description 02
+ - Description list description 03
+
+
+ A Table of content, which can be used as an index
+ for a blog archive.
+
+
+ Unlike regular lists, the TOC component
+ only supports a single depth level.
+
+
+ -
+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
+
+ -
+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
+
+ - Aliquam tincidunt mauris eu risus.
+ -
+ Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
+
+ - Aliquam tincidunt mauris eu risus.
+
+
+
+
+
+
+ Typography
+ Level 1 Heading
+
+ Pellentesque habitant morbi tristique senectus et netus et
+ malesuada fames ac turpis egestas. Vestibulum tortor quam,
+ feugiat vitae, ultricies eget, tempor sit amet, ante.
+
+ Level 2 Heading
+
+ Pellentesque habitant morbi tristique senectus et netus et
+ malesuada fames ac turpis egestas. Vestibulum tortor quam,
+ feugiat vitae, ultricies eget, tempor sit amet, ante.
+
+ Level 3 Heading
+
+ Pellentesque habitant morbi tristique senectus et netus et
+ malesuada fames ac turpis egestas. Vestibulum tortor quam,
+ feugiat vitae, ultricies eget, tempor sit amet, ante.
+
+ Level 4 Heading
+ Level 5 Heading
+ Level 6 Heading
+
+
+
+
+
+
+
+
+ Most Downloaded Movies on BitTorrent, 2011
+
+
+
+ Rank |
+ Movie |
+ Downloads |
+
+
+
+
+ torrentfreak.com |
+
+
+
+
+ 1 |
+ Fast Five |
+ 9,260,000 |
+
+
+ 2 |
+ The Hangover II |
+ 8,840,000 |
+
+
+ 3 |
+ Thor |
+ 8,330,000 |
+
+
+ 4 |
+ Source Code |
+ 7,910,000 |
+
+
+ 5 |
+ I Am Number Four |
+ 7,670,000 |
+
+
+ 6 |
+ Sucker Punch |
+ 7,200,000 |
+
+
+ 7 |
+ 127 Hours |
+ 6,910,000 |
+
+
+ 8 |
+ Rango |
+ 6,480,000 |
+
+
+ 9 |
+ The King’s Speech |
+ 6,250,000 |
+
+
+ 10 |
+ Harry Potter and the Deathly Hallows Part 2 |
+ 6,030,000 |
+
+
+
+
+
+
+
+ Terminal CSS also supports a range of special elements.
+
+ Blockquote
+
+
+ This is a properly formatted blockquote, btw. Measuring
+ programming progress by lines of code is like measuring aircraft
+ building progress by weight.
+
+
+
+ Misc
+ Terminal Prompt
+
+ I am the a tag example
+ I am the abbr tag example
+ I am the b tag example
+ I am the cite tag example
+ I am the code tag
example
+ I am the del tag example
+ I am the dfn tag example
+ I am the em tag example
+ I am the i tag example
+ I am the ins tag example
+ I am the kbd tag example
+ I am the q tag
example
+ I am the samp tag example
+ I am the small tag example
+ I am the span tag example
+ I am the strong tag example
+ I am the sub tag example
+ I am the sup tag example
+ I am the var tag example
+
+
+ Address
+
+ Mozilla Foundation
+ 1981 Landings Drive
+ Building K
+ Mountain View, CA 94043-0801
+ USA
+
+
+
+
+
+