-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathreusable-snippets.html
96 lines (75 loc) · 2.35 KB
/
reusable-snippets.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!-- THESE ARE SNIPPETS I FIND MYSELF USING AGAIN AND AGAIN -->
<!-- ++++++++++++++++++++++++++++ -->
<!-- PRO TIP -->
<p class="left-align" style="margin-top:20px;"><small class="yellow">
PRO TIP:
</small></p>
<!-- HINT -->
<p class="left-align" style="margin-top:20px;"><small class="green">
HINT:
</small></p>
<!-- IMAGE CITATION -->
<p><small>
From <a href=""></a>
</small></p>
<!-- ++++++++++++++++++++++++++++ -->
<!-- SECTION WITH LEFT PARAGRAPH -->
<section>
<h2>HEADER</h2>
<p class="left-align"></p>
</section>
<!-- ++++++++++++++++++++++++++++ -->
<!-- JAVA CODE -->
<pre><code contenteditable class="java">
CODE
</code></pre>
<section>
<h2>HEADER</h2>
<p class="left-align"></p>
<pre><code contenteditable class="java">
CODE
</code></pre>
</section>
<!-- ++++++++++++++++++++++++++++ -->
<!-- XML CODE -->
<pre><code contenteditable class="xml">
XML -- DONT FORGET TO ESCAPE
</code></pre>
<!-- ++++++++++++++++++++++++++++ -->
<!-- TEACHER NOTES -->
<aside class="notes">
TEACHER
</aside>
<!-- ++++++++++++++++++++++++++++ -->
<!-- REVEAL ONE ITEM AT A TIME -->
<section>
<h2>Fragmented Views</h2>
<p>Hit the next arrow...</p>
<p class="fragment">... to step through ...</p>
<ol>
<li class="fragment"><code>any type</code></li>
<li class="fragment"><em>of view</em></li>
<li class="fragment"><strong>fragments</strong></li>
</ol>
<ol>
<li></li>
<li></li>
<li></li>
</ol>
<p class="fragment grow">grow</p>
<p class="fragment shrink">shrink</p>
<p class="fragment roll-in">roll-in</p>
<p class="fragment fade-out">fade-out</p>
<p class="fragment highlight-red">highlight-red</p>
<p class="fragment highlight-green">highlight-green</p>
<p class="fragment highlight-blue">highlight-blue</p>
</section>
<h2>Clever Quotes</h2>
<p>
These guys come in two forms, inline: <q cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
The nice thing about standards is that there are so many to choose from</q> and block:
</p>
<blockquote cite="http://searchservervirtualization.techtarget.com/definition/Our-Favorite-Technology-Quotations">
For years there has been a theory that millions of monkeys typing at random on millions of typewriters would
reproduce the entire works of Shakespeare. The Internet has proven this theory to be untrue.
</blockquote>