Code for my portfolio website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

58 lines
3.4 KiB

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>iFixit Repairability Dashboard</title>
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <meta name="description" content="Find which devices are the most and least repairable, according to iFixit">
  7. <link href="static/bootstrap.min.css" rel="stylesheet" media="screen">
  8. <link href="static/styles.css" rel="stylesheet" media="screen">
  9. <link rel="manifest" href="static/site.webmanifest">
  10. <link rel="apple-touch-icon" sizes="180x180" href="static/apple-touch-icon.png">
  11. <link rel="icon" type="image/png" sizes="32x32" href="static/favicon-32x32.png">
  12. <link rel="icon" type="image/png" sizes="16x16" href="static/favicon-16x16.png">
  13. <script type="text/javascript">
  14. var _paq = window._paq = window._paq || [];
  15. /* tracker methods like "setCustomDimension" should be called before "trackPageView" */
  16. _paq.push(['trackPageView']);
  17. _paq.push(['enableLinkTracking']);
  18. (function() {
  19. var u="//analytics.yeetpc.com/matomo/";
  20. _paq.push(['setTrackerUrl', u+'matomo.php']);
  21. _paq.push(['setSiteId', '2']);
  22. var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
  23. g.type='text/javascript'; g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
  24. })();
  25. </script>
  26. </head>
  27. <body>
  28. <div class="header">
  29. <a href="#" class="text">iFixit Repairability Dashboard</a>
  30. </div>
  31. <div class="row">
  32. <div class="column2" style="background-color:#040e1e; overflow: auto; scrollbar-width: thin; width: 100%;">
  33. <p style="text-align:center; font-size: 25px;">Welcome to the iFixit Repairability Dashboard! Here you can find the repairability scores of many devices that iFixit has analyzed. Click a score below to get started!</p>
  34. <div class="centered">
  35. <div style="display:block; align-items:center; justify-content:center;"><a href="/one" class="button1 buttonall">1/10</a><a href="/two" class="button2 buttonall">2/10</a><a href="/three" class="button3 buttonall">3/10</a><a href="/four" class="button4 buttonall">4/10</a><a href="/five" class="button5 buttonall">5/10</a><a href="/six" class="button6 buttonall">6/10</a><a href="/seven" class="button7 buttonall">7/10</a><a href="/eight" class="button8 buttonall">8/10</a><a href="/nine" class="button9 buttonall">9/10</a><a href="/ten" class="button10 buttonall">10/10</a></div>
  36. </div>
  37. </div>
  38. </div>
  39. <div class="row">
  40. <div class="column2" style="background-color:#081c3d; overflow: auto; scrollbar-width: thin;">
  41. <h2 style="font-size: 25px;" class="centered">Ever wondered which devices are the hardest to repair? Find the laptops, tablets, and smartphones which have the worst iFixit Repairability Scores.</h2>
  42. <div class="centered">
  43. <a href="/worst-offenders" class="buttonhardest buttonall">Worst Offenders</a>
  44. </div>
  45. </div>
  46. <div class="column2" style="background-color:#06152e; overflow: auto; scrollbar-width: thin;">
  47. <h2 style="font-size: 25px;" class="centered">Want to find a device which is absolute repair bliss? Find the laptops, tablets, and smartphones which have the best iFixit Repairability Scores.</h2>
  48. <div class="centered">
  49. <a href="/most-repairable" class="buttonbest buttonall">Most Repairable Devices</a>
  50. </div>
  51. </div>
  52. </div>
  53. <div class="header" style="padding: 25px 10px;">
  54. <p style="text-align:center;">Made with &#10084;&#65039; by <a class="none" href="https://www.yeetpc.com/about.html" target="_blank" rel="noopener">Ravi Shah</a></p>
  55. </div>
  56. </body>
  57. </html>