/web/twopulleys-02.html

https://gitlab.com/jbagaresgaray/beltcal · HTML · 80 lines · 60 code · 8 blank · 12 comment · 0 complexity · a2252877c76b24904c27e5a7d6a8db52 MD5 · raw file

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
  8. <title>BeltCal App - Two Pulleys - Step 2</title>
  9. <!-- Bootstrap -->
  10. <link href="css/bootstrap.min.css" rel="stylesheet">
  11. <link href="css/style.css" rel="stylesheet">
  12. <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
  13. <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
  14. <!--[if lt IE 9]>
  15. <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
  16. <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
  17. <![endif]-->
  18. </head>
  19. <body class="blue">
  20. <header>
  21. <nav class="navbar navbar-default navbar-fixed-top">
  22. <div class="container-fluid">
  23. <!-- Brand and toggle get grouped for better mobile display -->
  24. <div class="navbar-header">
  25. <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
  26. <span class="sr-only">Toggle navigation</span>
  27. <span class="icon-bar"></span>
  28. <span class="icon-bar"></span>
  29. <span class="icon-bar"></span>
  30. </button>
  31. <a class="navbar-brand" href="index.html">
  32. <img src="images/beltcalc-logo.png">
  33. </a>
  34. </div>
  35. <!-- Collect the nav links, forms, and other content for toggling -->
  36. <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
  37. <ul class="nav navbar-nav">
  38. <li class="active"><a href="twopulleys-01.html">Two Pulley Calculator<span class="sr-only">(current)</span></a></li>
  39. <li><a href="threepulleys-01.html">Three Pulley Calculator</a></li>
  40. </ul>
  41. </div><!-- /.navbar-collapse -->
  42. </div><!-- /.container-fluid -->
  43. </nav>
  44. </header>
  45. <div class="container center">
  46. <h5>Follow the steps to calculate the correct belt legth for two pulleys.</h5>
  47. </div>
  48. <div class="cream">
  49. <div class="container center">
  50. <h3 class="orange">STEP TWO</h3>
  51. <h5>Measure the distance between pulleys (center to center)</h5>
  52. <br>
  53. <img src="/images/2p-02.png" width="100%">
  54. <br>
  55. <br>
  56. <form>
  57. <div class="form-group">
  58. <input type="text" class="form-control" id="stepTwoInput" placeholder="Distance Between Pulleys">
  59. </div>
  60. </form>
  61. </div>
  62. </div>
  63. <footer class=" center navbar-fixed-bottom">
  64. <a href="/twopulleys-01.html" class="footer-btn btn btn-lg active" role="button">Previous</a>
  65. <a href="/twopulleys-03.html" class="footer-btn btn btn-lg active" role="button">Next</a>
  66. </footer>
  67. <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  68. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
  69. <!-- Include all compiled plugins (below), or include individual files as needed -->
  70. <script src="js/bootstrap.min.js"></script>
  71. </body>
  72. </html>