Website for visualizing a persons github network.
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.

69 lines
3.0 KiB

5 years ago
5 years ago
5 years ago
  1. <!doctype html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  6. <link rel="icon" href="./favicon.ico" type="image/x-icon" />
  7. <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
  8. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
  9. <link rel="stylesheet" href="./style.css" />
  10. </head>
  11. <body>
  12. <div id="header-bar" class="d-flex flex-column flex-md-row shadow-sm align-items-center">
  13. <div id="header-title">
  14. <a href="./index.html">
  15. <img id="logo" src="./logo.svg" />
  16. </a>
  17. </div>
  18. <div id="navigation">
  19. <ul class="nav">
  20. <li class="nav-item">
  21. <a href="./GraphGenerator.html">
  22. Generate graphs
  23. </a>
  24. </li>
  25. <div class="nav-sep"></div>
  26. <li class="nav-item">
  27. <a href="https://github.com/jrtechs/github-graphs">
  28. View on GitHub
  29. </a>
  30. </li>
  31. <div class="nav-sep"></div>
  32. <li class="nav-item">
  33. <a href="./about.html">
  34. About
  35. </a>
  36. </li>
  37. </ul>
  38. </div>
  39. </div>
  40. <div class="main container-fluid">
  41. <div class="home-content row align-items-center">
  42. <div class="side-txt col">
  43. <div class="text-title text-center" style="padding: 10px;">
  44. <h1 class="m-title" style="padding-top: 5px;">How to get started:</h1>
  45. </div>
  46. <div class="text-content">
  47. <p style="position: relative; padding: 10px;">
  48. Head over to the 'Generate graphs' page and enter
  49. the username of a GitHub user. The space on that
  50. page will then populate with the requested GitHub
  51. user and all the related user, visualizing the
  52. connections between them.
  53. </p>
  54. <p style="position: relative; padding: 10px;">
  55. If you'd like to see how everything works, follow
  56. the link to GitHub, where you can view all the work
  57. that went into making this functional.
  58. </p>
  59. <p style="position: relative; padding: 10px;">
  60. If you're interested in knowing more about this
  61. project, additional information can be found on
  62. the About page.
  63. </p>
  64. </div>
  65. </div>
  66. <img class="side-img img-fluid col" src="./img/graphExample.png" />
  67. </div>
  68. </div>
  69. </body>
  70. </html>