aboutsummaryrefslogtreecommitdiffhomepage
path: root/demo/css.ur
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-05-03 12:36:25 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-05-03 12:36:25 -0400
commit4be41963bba445bb3bb26d5e05883f7eb72a9a22 (patch)
treefc89f9e8ddc1f6bba852276509eca2f74195c996 /demo/css.ur
parentd8de44ce7c70fc8ce462e764223e413a9a6ea6b6 (diff)
css demo
Diffstat (limited to 'demo/css.ur')
-rw-r--r--demo/css.ur11
1 files changed, 11 insertions, 0 deletions
diff --git a/demo/css.ur b/demo/css.ur
new file mode 100644
index 00000000..0c1d8f70
--- /dev/null
+++ b/demo/css.ur
@@ -0,0 +1,11 @@
+style quote
+
+fun main () = return <xml>
+ <head>
+ <link rel="stylesheet" type="text/css" href="http://adam.chlipala.net/style.css"/>
+ </head>
+
+ <body>
+ <div class={quote}>Here's a quote.</div>
+ </body>
+</xml>