Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.34 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--
  3. Template Name: Academic Education V2
  4. Author: <a href="http://www.os-templates.com/">OS Templates</a>
  5. Author URI: http://www.os-templates.com/
  6. Licence: Free to use under our free template licence terms
  7. Licence URI: http://www.os-templates.com/template-terms
  8. -->
  9. <html>
  10. <head>
  11. <title> Algorithms </title>
  12. <meta charset="utf-8">
  13. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  14. <link href="layout/styles/layout.css" rel="stylesheet" type="text/css" media="all">
  15. </head>
  16. <body id="top">
  17. <!-- ################################################################################################ -->
  18. <!-- ################################################################################################ -->
  19. <!-- ################################################################################################ -->
  20.  
  21. <!-- ################################################################################################ -->
  22. <!-- ################################################################################################ -->
  23. <!-- ################################################################################################ -->
  24. <div class="wrapper row1">
  25. <header id="header" class="clear">
  26. <!-- ################################################################################################ -->
  27. <div id="logo" class="fl_left">
  28. <h1><a href="index.html"><img src='images/demo/logo.jpg' height="100" width="200"></a></h1>
  29.  
  30.  
  31. <!-- ################################################################################################ -->
  32. </header>
  33. </div>
  34. <!-- ################################################################################################ -->
  35. <!-- ################################################################################################ -->
  36. <!-- ################################################################################################ -->
  37. <!-- ################################################################################################ -->
  38. </nav>
  39. </div>
  40. </div>
  41. <!-- ################################################################################################ -->
  42. <!-- ################################################################################################ -->
  43. <!-- ################################################################################################ -->
  44. <div class="wrapper">
  45. <div id="slider">
  46. <div id="slide-wrapper" class="rounded clear">
  47. <!-- ################################################################################################ -->
  48. <figure id="slide-1"><a class="view" href="#"><img src="images/demo/slider/1.png" alt=""></a>
  49. <figcaption>
  50. <h2>Water Jug Problem</h2>
  51. <p>Fill up the jugs with the right amount in as little moves possible</p>
  52. <p class="right"><a href="jug.html">Try here &raquo;</a></p>
  53. </figcaption>
  54. </figure>
  55. <figure id="slide-2"><a class="view" href="#"><img src="images/demo/slider/2.png" alt=""></a>
  56. <figcaption>
  57. <h2>Tower of Hanoi </h2>
  58. <p>Bring all the discs from one rod to another with limitations</p>
  59. <p class="right"><a href="hanoi.html">Try here &raquo;</a></p>
  60. </figcaption>
  61. </figure>
  62. <figure id="slide-3"><a class="view" href="#"><img src="images/demo/slider/3.jpg" alt=""></a>
  63. <figcaption>
  64. <h2>Bubble Sort</h2>
  65. <p>Learn about a type of sorting algorithm</p>
  66. <p class="right"><a href="bubble.html">Learn here &raquo;</a></p>
  67. </figcaption>
  68. </figure>
  69. <figure id="slide-4"><a class="view" href="#"><img src="images/demo/slider/3.jpg" alt=""></a>
  70. <figcaption>
  71. <h2>Quick Sort</h2>
  72. <p>A more complex type of sort</p>
  73. <p class="right"><a href="index.html">Learn here &raquo;</a></p>
  74. </figcaption>
  75. </figure>
  76. <figure id="slide-5"><a class="view" href="#"><img src="images/demo/slider/search.jpg" alt=""></a>
  77. <figcaption>
  78. <h2>Search</h2>
  79. <p>Looking for a Specific Algorithm?</p>
  80. <p class="right"><a href="home.html">Click here to search &raquo;</a></p>
  81. </figcaption>
  82. </figure>
  83. <!-- ################################################################################################ -->
  84. <ul id="slide-tabs">
  85. <li><a href="#slide-1">Attempt the Water Jug Problem</a></li>
  86. <li><a href="#slide-2">Attempt the Tower of Hanoi</a></li>
  87. <li><a href="#slide-3">Learn more about Bubble Sort</a></li>
  88. <li><a href="#slide-4">Learn more about Quick Sort</a></li>
  89. <li><a href="#slide-5">Search for an Algorithm</a></li>
  90. </ul>
  91. <!-- ################################################################################################ -->
  92. </div>
  93. </div>
  94. </div>
  95. <!-- ################################################################################################ -->
  96. <!-- ################################################################################################ -->
  97. <!-- ################################################################################################ -->
  98.  
  99. <h1> Welcome to our Algorithms site</h1>
  100.  
  101. <p> Thank you for visiting our website. The goal of this website is to help users understand various types of algorithms.
  102. These algorithms vary from sorting algorithms or ones that are more complex such as the Tower of Hanoi. Each page comes with a detailed explanation
  103. on how the problem works as well as an example of it coded. Each algorithm also features an interactive demonstration or game that users can use
  104. in order to better grasp the algorithm.
  105. </p>
  106.  
  107. <h1> Looking for a certain algorithm?</h1>
  108.  
  109. <p> If you're looking to better understand a certain algorithm, you can use our search feature in order to easily locate
  110. what algorithm you are searching for. Aside from that, you can also sort the algorithms by various conditions such as by
  111. name or difficulty in order to find other algorithms.
  112. </p>
  113. <!-- JAVASCRIPTS -->
  114. <script src="layout/scripts/jquery.min.js"></script>
  115. <script src="layout/scripts/jquery.fitvids.min.js"></script>
  116. <script src="layout/scripts/jquery.mobilemenu.js"></script>
  117. <script src="layout/scripts/tabslet/jquery.tabslet.min.js"></script>
  118. </body>
  119. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement