source: source/index.html @ 336:b20f2d54ae29

pf-1.0
Last change on this file since 336:b20f2d54ae29 was 322:ceb184ed4ed1, checked in by Evgeny Stambulchik <Evgeny.Stambulchik@…>, 12 years ago

Anchored empty spaces removed.

File size: 4.9 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
4  <head>
5    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6    <title>Plasma Formulary Interactive</title>
7    <link rel="icon" type="image/png" href="pf_icon.png" />
8
9    <style type="text/css">
10      body {
11        font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
12        font-size:   12pt;
13      }
14     
15      span.interactive:hover {
16        font-style: oblique;
17      }
18     
19      table {
20        width:        800px;
21        padding:      6px;
22        margin-left:  auto;
23        margin-right: auto;
24        margin-top:   20px;
25        border:       2px solid #808080;
26        background:   #ffffe7;
27      }
28      td.button {
29        width: 25%;
30      }
31     
32      p.text {
33        text-align:  justify;
34        text-indent: 20pt;
35      }
36     
37      input {
38        width:       150px;
39        border:      1px solid #808080;
40        margin:      2px;
41        background:  #e0e0f0;
42        font-size:   12pt;
43        font-weight: bold;
44      }
45      input:hover {
46        border:     2px solid blue;
47        margin:     1px;
48        background: #b0e0ff;
49      }
50     
51      img {
52        border: 0px;
53      }
54    </style>
55
56  </head>
57  <body>
58
59    <noscript>
60      <p>
61        JavaScript is <span style="color:red;">disabled</span>! Please enable it
62        in order to use <i>Plasma Formulary</i>.
63      </p>
64    </noscript>
65
66    <table>
67      <tr align="center">
68        <td colspan="4">
69          <h1>Plasma Formulary <span class="interactive">Interactive</span></h1>
70        </td>
71      </tr>
72      <tr><td colspan="4">
73        <p class="text">
74          <i>Plasma Formulary</i> is an interactive, Web-based application that
75          provides a comfortable access to evaluating, comparing, and plotting
76          of a multitude of different plasma and atomic physics parameters,
77          grouped by the unit dimensions. A special attention is devoted to the
78          Stark broadening which is calculated with a good accuracy for
79          transitions between degenerate atomic levels. The list of the entities
80          calculated encompasses over one hundred entries and is easily
81          expandable.
82        </p>
83        <p class="text">
84          The application is built using open-source components and is
85          compatible with a majority of modern browsers.
86        </p>
87      </td></tr>
88      <tr align="center">
89        <td class="button">
90          <input type="button" value="User's Guide" 
91            onclick="window.open('resource/pf/html/ug.html',
92                                 'ug', 'width=850,scrollbars=1')"/>
93        </td>
94        <td class="button">
95          <input type="button" value="Reference" 
96            onclick="window.open('http://dx.doi.org/10.1088/1748-0221/6/10/P10009',
97                                 'gpl', 'width=850,scrollbars=1')"/>
98        </td>
99        <td class="button">
100          <input type="button" value="License Terms" 
101            onclick="window.open('resource/pf/html/GPL.html',
102                                 'gpl', 'width=850,scrollbars=1')"/>
103        </td>
104        <td class="button">
105          <input type="button" value="Development" 
106            onclick="window.location='http://plasma-gate.weizmann.ac.il/pf/trac'"/>
107        </td>
108      </tr>
109      <tr align="center">
110        <td class="button" colspan="2">
111          <input type="button" value="Download" 
112            onclick="window.location='pf.zip'"/>
113        </td>
114
115        <td class="button" colspan="2">
116        <p>
117          <input type="button" value="Launch Now!" 
118            onclick="window.open('pf.html','pf','width=800,height=550')"/>
119        </p>
120        </td>
121      </tr>
122      <tr>
123        <td align="left">
124          <a href="http://www.opensource.org/" target="_blank">
125            <img src="resource/pf/image/opensource.png"
126                 alt="Open Source Initiative"
127                 style="width:64px;height:64px;vertical-align:middle" /></a>
128          <a href="http://www.qooxdoo.org/" target="_blank">
129            <img src="resource/pf/image/qx_powered.png"
130                 alt="Qooxdoo"
131                 style="width:91px;height:43px;vertical-align:middle" /></a>
132        </td>
133        <td colspan="2"/>
134        <td align="right">
135          <a href="http://jigsaw.w3.org/css-validator/check/referer" target="_blank">
136            <img src="resource/pf/image/valid-css3.png"
137                 alt="Valid CSS"
138                 style="width:88px;height:31px;vertical-align:middle" /></a>
139          <a href="http://validator.w3.org/check?uri=referer" target="_blank">
140            <img src="resource/pf/image/valid-xhtml10.png"
141                 alt="Valid XHTML 1.0 Strict"
142                 style="width:88px;height:31px;vertical-align:middle" /></a>
143        </td>
144      </tr>
145    </table>
146  </body>
147</html>
Note: See TracBrowser for help on using the repository browser.