tor-browser

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

textcontrol.html (378B)


      1 <!doctype html>
      2 <html>
      3  <head>
      4    <meta name="viewport" content="width=device-width,initial-scale=1" />
      5    <style>
      6      input {
      7        height: 100px;
      8        width: 100px;
      9      }
     10      textarea {
     11        height: 100px;
     12        width: 100px;
     13      }
     14    </style>
     15  </head>
     16  <body>
     17    <input type="text" value="foo" /><br />
     18    <textarea>bar</textarea>
     19  </body>
     20 </html>