forked from oodavid/oodavid.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyletest.html
77 lines (77 loc) · 2.11 KB
/
styletest.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
---
layout: default
title: "Style Test"
---
<h1>{{page.title}}</h1>
<h2>heading 2</h2>
<h3>heading 3</h3>
<h4>heading 4</h4>
<p>Paragraph with a <a href="#">link somewhere</a></p>
<ul>
<li>unordered lists</li>
</ul>
<ol>
<li>ordered lists</li>
</ol>
<hr>
<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
<p>here comes a table...</p>
<table>
<tr>
<th>hello</th>
<th>world</th>
</tr>
<tr>
<td>hello!</td>
<td>world!</td>
</tr>
</table>
<blockquote>
<p>A simple Blockquote</p>
</blockquote>
<blockquote>
<p>A simple Blockquote</p>
<cite>With citation</cite>
</blockquote>
<blockquote>
<img src="/assets/work/corrodere.png" width="200">
<p>Corrodere</p>
<p>And some things</p>
</blockquote>
<figure>
<img src="http://universe-beauty.com/albums/userpics/1/6/space-planets-wallpaper-img13.jpg">
<figcaption>The planets!</figcaption>
</figure>
<figure>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ojvTSRA-O-Y" frameborder="0" allowfullscreen></iframe>
<figcaption>corgi sploot</figcaption>
</figure>
<p>Buttons: <button>button</button></p>
<p>Individual Keyboard key: <span class="key">ctrl</span></p>
<p>Keyboard Shortcut: <span class="shortcut"><span class="key">ctrl</span> + <span class="key">alt</span> + <span class="key">del</span></span></p>
<pre>simple
preformatted text
(no code syntax highlighting)</pre>
<pre class="brush: js">
var js = true;
if(js){
alert('I am javascript highlighting!');
}
</pre>
<!-- Saves escaping, not so good for SEO / syndication -->
<script type="syntaxhighlighter" class="brush: php"><![CDATA[
<?php
echo "hello world";
?>
]]></script>
<pre class="brush: sql">
SELECT * FROM `users` WHERE `id` = 1;
</pre>
<pre class="brush: sql">
SELECT * FROM `users` WHERE `id` = 1; SELECT * FROM `users` WHERE `id` = 1; SELECT * FROM `users` WHERE `id` = 1; SELECT * FROM `users` WHERE `id` = 1; SELECT * FROM `users` WHERE `id` = 1; SELECT * FROM `users` WHERE `id` = 1; SELECT * FROM `users` WHERE `id` = 1; SELECT * FROM `users` WHERE `id` = 1; SELECT * FROM `users` WHERE `id` = 1; SELECT * FROM `users` WHERE `id` = 1;
</pre>