Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

93 lines
2.4 KiB

  1. <!doctype html>
  2. <html>
  3. <head>
  4. <style>
  5. html { background:#202050;
  6. font-family:CentSchbook Mono BT, Bitstream Vera Sans Mono, monofont, monospace;
  7. }
  8. body { background:#ddd; width:600px; border:10px solid #fff; margin:2em auto; padding:2em }
  9. h1 {
  10. font-size:200px;
  11. line-height:1;
  12. font-family:"gubblebum-blocky", monospace;
  13. color:#f00;
  14. text-align:center;
  15. padding:0;
  16. margin:0 auto;
  17. text-indent:-999em;
  18. height:202px;
  19. width:519px;
  20. background:url(npm.png) center;
  21. }
  22. h2 {
  23. color:#202050;
  24. font-size:100%;
  25. }
  26. p, ul, ol { margin:1em 0 0; padding:0 }
  27. li { list-style-position:inside }
  28. a { color:#f00; text-decoration:none; }
  29. a:hover { text-decoration:underline; }
  30. code { background:#fff ; outline: 1px solid #ccc; padding:0 2px; }
  31. @font-face {
  32. font-family:monofont;
  33. src: url(http://foohack.com/tpl/fonts/Bitstream-Vera-Sans-Mono/VeraMono.ttf) format("truetype");
  34. }
  35. @font-face {
  36. font-family:monofont;
  37. font-style:italic;
  38. src: url(http://foohack.com/tpl/fonts/Bitstream-Vera-Sans-Mono/VeraMoIt.ttf) format("truetype");
  39. }
  40. @font-face {
  41. font-family:monofont;
  42. font-weight:bold;
  43. src: url(http://foohack.com/tpl/fonts/Bitstream-Vera-Sans-Mono/VeraMoBd.ttf) format("truetype");
  44. }
  45. @font-face {
  46. font-family:monofont;
  47. font-style:italic;
  48. font-weight:bold;
  49. src: url(http://foohack.com/tpl/fonts/Bitstream-Vera-Sans-Mono/VeraMoBI.ttf) format("truetype");
  50. }
  51. </style>
  52. <title>npm - JavaScript Package Manager</title>
  53. </head>
  54. <h1>npm</h1>
  55. <p>npm is a package manager for <a href="https://nodejs.org/">node</a>. You can use it to install
  56. and publish your node programs. It manages dependencies and does other cool stuff.</p>
  57. <h2>Easy Zero Line Install</h2>
  58. <p><a href="https://nodejs.org/en/download/">Install Node.js</a> <br>
  59. (npm comes with it.)</p>
  60. <p>Because a one-line install is one too many.</p>
  61. <h2>Fancy Install</h2>
  62. <ol>
  63. <li><a href="https://github.com/npm/cli">Get the code.</a>
  64. <li>Do what <a href="doc/README.html">the README</a>
  65. says to do.
  66. </ol>
  67. <p>There's a pretty thorough install script at
  68. <a href="https://npmjs.org/install.sh">https://npmjs.org/install.sh</a></p>
  69. <p>For maximum security, make sure to thoroughly inspect every
  70. program that you run on your computer!</p>
  71. <h2>Other Cool Stuff</h2>
  72. <ul>
  73. <li><a href="doc/README.html">README</a>
  74. <li><a href="doc/">Help Documentation</a>
  75. <li><a href="https://www.npmjs.com/">Search for Packages</a>
  76. <li><a href="https://npm.community/">Bugs</a>
  77. </ul>
  78. </body>
  79. </html>