info.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <!DOCTYPE HTML>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  5. </head>
  6. <body>
  7. <h1>Information</h1>
  8. <p>Lots of valuable data here
  9. <a href="/" id="back"><img src="blank.gif" alt="Back"/></a>
  10. </p>
  11. <div class="notice"><?php if (isset($notice)) echo $notice; ?></div>
  12. <h3>Don't do that at home!</h3>
  13. <p>Is that interesting?</p>
  14. <form action="/" method="post">
  15. <label for="checkbox">Checked</label>
  16. <input type="checkbox" name="interesting" value="1" id="checkbox" checked="checked"/>
  17. <input type="text" name="rus" value="Верно"/>
  18. <input type="submit"/>
  19. </form>
  20. <p>Текст на русском</p>
  21. <a href="/">Ссылочка</a>
  22. <a href="/">Franšízy - pobočky</a>
  23. <a href="/cookies">Link 3</a>
  24. <a href="/login" class="sign">Sign in!</a>
  25. <div>Kill & Destroy</div>
  26. <div style="display: none" class="hidden">
  27. Invisible text
  28. </div>
  29. <div id="grab-multiple">
  30. <a id="first-link">First</a>
  31. <a id="second-link">Second</a>
  32. <a id="third-link">Third</a>
  33. </div>
  34. <script>
  35. var a = 2;
  36. var b = 3;
  37. if (a <= b) {
  38. console.log('a is less than b!');
  39. }
  40. </script>
  41. <p>Text behind JS comparision</p>
  42. </body>
  43. </html>