Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Operating Systems</title>
  5.  
  6. <!-- Adding the jquery source and the links -->
  7. <script src="https://code.jquery.com/jquery-3.1.0.min.js"></script>
  8. <script src="OperatingSystems2.js"></script>
  9. <link rel="stylesheet" href="OperatingSystems2.css">
  10.  
  11. </head>
  12. <body>
  13. <h2>Hadi Rammal</h2>
  14. <form id="Input">
  15. <p><u>Page Replacement Algorithms</u></p>
  16. <input type="text" name="processes" id="process" placeholder="Input">
  17. <select id = "algorithm" name="algorithm">
  18. <option value="FIFO" selected="">First in First Out</option>
  19. <option value="LRU">Last Recently Used</option>
  20. </select>
  21. <br>
  22. <input type='Number' name='frames' id='frames' placeholder="Number of Frames">
  23. <br>
  24. <input type="button" id="input" value="Submit">
  25. </form>
  26.  
  27.  
  28. <div id="generated-table">
  29.  
  30. </div>
  31.  
  32. </body>
  33. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement