root/css4swing/applet.html

Revision 574, 1.2 kB (checked in by eitan, 5 years ago)

added a separate simple / cleaner demo that am exposing also as an applet

Line 
1 <html>
2 <head>
3 <title>css demo applet</title>
4 <style type="text/css">
5 h1
6 {
7   border-bottom: thin solid black;
8 }
9 </style>
10 </head>
11 <body>
12
13 <h1>CSS 4 Swing Demo</h2>
14
15 <applet width="400" height="300"
16         code="com.u2d.css4swing.demo.Main"
17         archive="css4swing-demo-applet.jar"
18         style="float: left; margin-right: 3em;"
19       >
20 </applet>
21
22 <h3>Instructions</h3>
23
24 <ol>
25    <li>From the File menu, click "Edit Stylesheet"</li>
26    <li>Click the "Apply" button to style the sample gui</li>
27    <li>Experiment with the stylesheet</li>
28 </ol>
29
30 <h3>Documentation</h3>
31
32 <ol>
33    <li>CSS4Swing is documented <a href="http://jmatter.org/documentation/html/chap14.html#tth_chAp14">here</a></li>
34 </ol>
35
36 <h3>Related Blog Entries</h3>
37 <ol>
38    <li><a href="http://jmatter.org/articles/2007/04/05/css-support-coming-for-jmatter">First JMatter Post</li>
39    <li><a href="http://www.jroller.com/page/dukejeffrie?entry=css_for_swing">Tiago</li>
40    <li><a href="http://jroller.com/page/aalmiray/?entry=css_on_swing">Andres</a></li>
41    <li><a href="http://jmatter.org/articles/2007/04/16/css-4-swing-now-open-source">GPL'd</a></li>
42 </ol>
43
44 <hr style="clear: both; margin-top: 3em;" />
45 Eitan Suez
46 </body>
47 </html>
Note: See TracBrowser for help on using the browser.