| <!doctype html> | |
| <html lang="en"> | |
| <head> | |
|     <meta charset="utf-8"> | |
|     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
|     <link rel="icon" href="./favicon.ico" type="image/x-icon" /> | |
|     <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" /> | |
|     <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"> | |
|     <link rel="stylesheet" href="./style.css" /> | |
| </head> | |
| <body> | |
|     <div id="header-bar" class="d-flex flex-column flex-md-row shadow-sm align-items-center"> | |
|         <div id="header-title"> | |
|             <a href="./index.html"> | |
|                 <img id="logo" src="./logo.svg" /> | |
|             </a> | |
|         </div> | |
|         <div id="navigation"> | |
|             <ul class="nav"> | |
|                 <li class="nav-item"> | |
|                     <a href="./FriendsGraph.html"> | |
|                         Generate graphs | |
|                     </a> | |
|                 </li> | |
|                 <div class="nav-sep"></div> | |
|                 <li class="nav-item"> | |
|                     <a href="https://github.com/jrtechs/github-graphs"> | |
|                         View on GitHub | |
|                     </a> | |
|                 </li> | |
|                 <div class="nav-sep"></div> | |
|                 <li class="nav-item"> | |
|                     <a href="./about.html"> | |
|                         About | |
|                     </a> | |
|                 </li> | |
|             </ul> | |
|         </div> | |
|     </div> | |
|     <div class="main container-fluid"> | |
|         <div class="home-content row align-items-center"> | |
|             <div class="side-txt col"> | |
|                 <div class="text-title text-center" style="padding: 10px;"> | |
|                     <h1 class="m-title">How to get started:</h1> | |
|                 </div> | |
|                 <div class="text-content"> | |
|                     <p style="position: relative; padding: 10px;"> | |
|                         Head over to the 'Generate graphs' page and enter | |
|                         the username of a GitHub user. The space on that | |
|                         page will then populate with the requested GitHub | |
|                         user and all the related user, visualizing the | |
|                         connections between them. | |
|                     </p> | |
|                     <p style="position: relative; padding: 10px;"> | |
|                         If you'd like to see how everything works, follow | |
|                         the link to GitHub, where you can view all the work | |
|                         that went into making this functional. | |
|                     </p> | |
|                     <p style="position: relative; padding: 10px;"> | |
|                         If you're interested in knowing more about this | |
|                         project, additional information can be found on  | |
|                         the About page. | |
|                     </p> | |
|                 </div> | |
|             </div> | |
|             <img class="side-img img-fluid col" src="./img/graphExample.png" /> | |
|         </div> | |
|     </div> | |
| </body> | |
| </html> |