index.html 938 B

1234567891011121314151617181920212223242526272829303132333435
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <script async src="https://cdn.ampproject.org/v0.js"></script>
  6. <title>Shorty - shorten URL</title>
  7. <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
  8. <script type="application/ld+json">
  9. {
  10. "@context": "http://schema.org",
  11. "@type": "NewsArticle",
  12. "headline": "Open-source framework for publishing content",
  13. "datePublished": "2015-10-07T12:02:41Z",
  14. "image": [
  15. "logo.jpg"
  16. ]
  17. }
  18. </script>
  19. <link rel="stylesheet" href="https://newcss.net/lite.css">
  20. <link rel="stylesheet" href="https://newcss.net/theme/night.css">
  21. </head>
  22. <body>
  23. <form action="/s">
  24. Link to shorten:
  25. <input type="text" name="link">
  26. <input type="submit" value="Shorten">
  27. </form>
  28. <br/>
  29. <form action="/d">
  30. Link to decode:
  31. <input type="text" name="link">
  32. <input type="submit" value="Decode">
  33. </form>
  34. </body>
  35. </html>