tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

mo-form-dynamic-002-ref.html (992B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <meta charset="utf-8">
      5    <title>&lt;mo&gt; dynamic form</title>
      6    <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
      7    <style>
      8      math, math * {
      9          font: 60px/1 Ahem;
     10      }
     11      mo {
     12          color: blue;
     13      }
     14    </style>
     15  </head>
     16  <body>
     17    <p>
     18      <math>
     19        <mn>1</mn><mo id="infix_attach_prefix" form="prefix">+</mo><mn>2</mn>
     20      </math>
     21    </p>
     22    <p>
     23      <math>
     24        <mo id="prefix_attach_infix" form="infix">+</mo><mn>3</mn>
     25      </math>
     26    </p>
     27    <p>
     28      <math>
     29        <mn>1</mn><mo id="infix_remove">+</mo><mn>2</mn>
     30      </math>
     31    </p>
     32    <p>
     33      <math>
     34        <mo id="prefix_remove">+</mo><mn>3</mn>
     35      </math>
     36    </p>
     37    <p>
     38      <math>
     39        <mn>1</mn><mo id="infix_set_to_prefix" form="prefix">+</mo><mn>2</mn>
     40      </math>
     41    </p>
     42    <p>
     43      <math>
     44        <mo id="prefix_set_to_infix" form="infix">+</mo><mn>3</mn>
     45      </math>
     46    </p>
     47  </body>
     48 </html>