Advertisement
mattiac

Untitled

Sep 24th, 2021
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.98 KB | None | 0 0
  1. File containing div:
  2.  
  3. <!doctype html>
  4. <html lang="it">
  5. <head>
  6. <!-- Required meta tags -->
  7. <meta charset="utf-8">
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9.  
  10. <!-- Bootstrap CSS -->
  11. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-F3w7mX95PdgyTmZZMECAngseQB83DfGTowi0iMjiWaeVhAn4FJkqJByhZMI3AhiU" crossorigin="anonymous">
  12. <link rel="stylesheet" href="styles.css">
  13. <title>Il diario</title>
  14. </head>
  15. <body>
  16. <div id='menu' style="background-color:powderblue;">
  17. <a href="homepage.html" style="text-decoration:none; display: inline-block;">
  18. <h4 style="color:white;">About</h4>
  19. </a>
  20. <a href="clid.html" style="text-decoration:none; display: inline-block; padding-left: 1%;">
  21. <h4 style="color:white;">option 1</h4>
  22. </a>
  23. <a href="contatti.html" style="text-decoration:none; display: inline-block; padding-left: 1%;">
  24. <h4 style="color:white;">option 2</h4>
  25. </a>
  26. <a href="id.php" style="text-decoration:none; display: inline-block; padding-left: 1%; ">
  27. <h4 style="color:red;">option 3</h4>
  28. </a>
  29. <a href="di.html" style="text-decoration:none; display: inline-block; padding-left: 1%; ">
  30. <h4 style="color:red;">option 4</h4>
  31. </a>
  32. <a href="pdqd.html" style="text-decoration:none; display: inline-block; padding-left: 1%; ">
  33. <h4 style="color:red;">option 5</h4>
  34. </a>
  35. <a href="rs.html" style="text-decoration:none; display: inline-block; padding-left: 1%; ">
  36. <h4 style="color:red;">option 6</h4>
  37. </a>
  38. </div>
  39.  
  40.  
  41. <div id="set" style="background-color:grey">
  42.  
  43. <label for="Setting">Order of the posts:</label>
  44. <select name="Order" id="ord">
  45. <option value="<">decreasing</option>
  46. <option value=">">increasing</option>
  47. </select>
  48.  
  49. <button id='order'>Order</button>
  50.  
  51. </div>
  52.  
  53. <div id='main'>
  54. <?php
  55. $myfile = fopen("Nuovo documento di testo.html", "r") or die("Non รจ stato possibile caricare il diario");
  56. echo fread($myfile,filesize("Nuovo documento di testo.html"));
  57. fclose($myfile);
  58. ?>
  59. </div>
  60.  
  61.  
  62. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-/bQdsTh/da6pkI1MST/rWKFNjaCP5gBSY4sEBT38Q/9RBh9AH40zEOg7Hlq2THRZ" crossorigin="anonymous"></script>
  63.  
  64.  
  65. <script src='https://code.jquery.com/jquery-3.5.1.min.js' integrity='sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=' crossorigin='anonymous'></script>
  66. <script src='ordina.js'></script>
  67.  
  68.  
  69.  
  70. </body>
  71. </html>
  72.  
  73. Jquery script
  74.  
  75. $(document).ready(
  76. function(){
  77. $("#order").click(function(){
  78. alert("it works");
  79. });
  80. }
  81. );
  82.  
  83.  
  84. contents of the divs
  85.  
  86. <div id='612' name='25 Settembre 2021'> <!--Numero post-->
  87.  
  88. <p>
  89. 24 Settembre 2021
  90. </p>
  91.  
  92.  
  93. <br>
  94.  
  95. <p>
  96. 612
  97. </p>
  98.  
  99. <p>
  100. 612
  101. </p>
  102. </div>
  103.  
  104.  
  105.  
  106. <div id='611' name='25 Settembre 2021'> <!--Numero post-->
  107.  
  108. <p>
  109. 24 Settembre 2021
  110. </p>
  111.  
  112.  
  113. <br>
  114.  
  115. <p>
  116. 611
  117. </p>
  118.  
  119. <p>
  120. 611
  121. </p>
  122. </div>
  123.  
  124.  
  125. <div id='610' name='25 Settembre 2021'> <!--Numero post-->
  126.  
  127. <p>
  128. 24 Settembre 2021
  129. </p>
  130.  
  131.  
  132. <br>
  133.  
  134. <p>
  135. 610
  136. </p>
  137.  
  138. <p>
  139. 610
  140. </p>
  141. </div>
  142.  
  143.  
  144.  
  145. <div id='609' name='25 Settembre 2021'> <!--Numero post-->
  146.  
  147. <p>
  148. 24 Settembre 2021
  149. </p>
  150.  
  151.  
  152. <br>
  153.  
  154. <p>
  155. 609
  156. </p>
  157.  
  158. <p>
  159. 609
  160. </p>
  161. </div>
  162.  
  163.  
  164.  
  165.  
  166. <div id='608' name='25 Settembre 2021'> <!--Numero post-->
  167.  
  168. <p>
  169. 24 Settembre 2021
  170. </p>
  171.  
  172.  
  173. <br>
  174.  
  175. <p>
  176. 608
  177. </p>
  178.  
  179. <p>
  180. 608
  181. </p>
  182. </div>
  183.  
  184.  
  185.  
  186.  
  187. <div id='607' name='25 Settembre 2021'> <!--Numero post-->
  188.  
  189. <p>
  190. 24 Settembre 2021
  191. </p>
  192.  
  193.  
  194. <br>
  195.  
  196. <p>
  197. 607
  198. </p>
  199.  
  200. <p>
  201. 607
  202. </p>
  203. </div>
  204.  
  205.  
  206.  
  207.  
  208. <div id='606' name='25 Settembre 2021'> <!--Numero post-->
  209.  
  210. <p>
  211. 24 Settembre 2021
  212. </p>
  213.  
  214.  
  215. <br>
  216.  
  217. <p>
  218. 607
  219. </p>
  220.  
  221. <p>
  222. 607 dsaogfadfsgdfsagiy
  223. </p>
  224. </div>
  225.  
  226.  
  227.  
  228.  
  229. <div id='605' name='25 Settembre 2021'> <!--Numero post-->
  230.  
  231. <p>
  232. 24 Settembre 2021
  233. </p>
  234.  
  235.  
  236. <br>
  237.  
  238. <p>
  239. 607
  240. </p>
  241.  
  242. <p>
  243. 607 dsaogfadfsgdfsagiy
  244. </p>
  245. </div>
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255. <div id='676' name='25 Settembre 2021'> <!--Numero post-->
  256.  
  257. <p>
  258. 24 Settembre 2021
  259. </p>
  260.  
  261.  
  262. <br>
  263.  
  264. <p>
  265. 676
  266. </p>
  267.  
  268. <p>
  269. 444444444444444
  270. </p>
  271. </div>
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278. <div id='602' name='25 Settembre 2021'> <!--Numero post-->
  279.  
  280. <p>
  281. 24 Settembre 2021
  282. </p>
  283.  
  284.  
  285. <br>
  286.  
  287. <p>
  288. 602
  289. </p>
  290.  
  291. <p>
  292. 602 dsaogfadfsgdfsagiy
  293. </p>
  294. </div>
  295.  
  296.  
  297.  
  298.  
  299.  
  300.  
  301. <div id='601' name='25 Settembre 2021'> <!--Numero post-->
  302.  
  303. <p>
  304. 24 Settembre 2021
  305. </p>
  306.  
  307.  
  308. <br>
  309.  
  310. <p>
  311. 601
  312. </p>
  313.  
  314. <p>
  315. 601 dsaogfadfsgdfsagiy
  316. </p>
  317. </div>
  318.  
  319.  
  320.  
  321. <div id='600' name='24 Settembre 2021'> <!--Numero post-->
  322.  
  323. <p>
  324. 24 Settembre 2021
  325. </p>
  326.  
  327. <br>
  328.  
  329. <p>
  330. 13:36
  331. </p>
  332.  
  333. <p>
  334. test 1
  335. </p>
  336.  
  337. <br>
  338.  
  339. <p>
  340. 14:15
  341. </p>
  342.  
  343. <p>
  344. test 1
  345. </p>
  346. </div>
  347.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement