forked from nathansmith/formalize
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdemo.html
More file actions
116 lines (111 loc) · 1.63 KB
/
Copy pathdemo.html
File metadata and controls
116 lines (111 loc) · 1.63 KB
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Formalize CSS - Demo</title>
<style>
body {
background: #fff;
color: #333;
font: 13px/1.5 Arial, sans-serif;
}
h1 {
font-size: 20px;
}
a {
color: #06c;
outline: 0;
}
a:hover {
color: #f60;
}
</style>
</head>
<body>
<h1>
Formalize CSS - Demo
</h1>
<p>
<a href="http://formalize.me/">Formalize home</a>
|
<a href="http://sonspring.com/journal/formalize-css">Blog post</a>
|
<a href="http://github.com/nathansmith/formalize/">GitHub repo</a>
</p>
<ul>
<li>
<a href="unstyled.html">Unstyled - Default</a>
</li>
</ul>
<p>
Demo with Dojo...
</p>
<ul>
<li>
<a href="dojo_demo.html">Normal</a>
</li>
<li>
<a href="dojo_disabled.html">Disabled</a>
</li>
<li>
<a href="dojo_errors.html">Errors</a>
</li>
</ul>
<p>
Demo with jQuery...
</p>
<ul>
<li>
<a href="jquery_demo.html">Normal</a>
</li>
<li>
<a href="jquery_disabled.html">Disabled</a>
</li>
<li>
<a href="jquery_errors.html">Errors</a>
</li>
</ul>
<p>
Demo with MooTools...
</p>
<ul>
<li>
<a href="mootools_demo.html">Normal</a>
</li>
<li>
<a href="mootools_disabled.html">Disabled</a>
</li>
<li>
<a href="mootools_errors.html">Errors</a>
</li>
</ul>
<p>
Demo with Prototype...
</p>
<ul>
<li>
<a href="prototype_demo.html">Normal</a>
</li>
<li>
<a href="prototype_disabled.html">Disabled</a>
</li>
<li>
<a href="prototype_errors.html">Errors</a>
</li>
</ul>
<p>
Demo with YUI...
</p>
<ul>
<li>
<a href="yui_demo.html">Normal</a>
</li>
<li>
<a href="yui_disabled.html">Disabled</a>
</li>
<li>
<a href="yui_errors.html">Errors</a>
</li>
</ul>
</body>
</html>