/web/twopulleys-02.html
https://gitlab.com/jbagaresgaray/beltcal · HTML · 80 lines · 60 code · 8 blank · 12 comment · 0 complexity · a2252877c76b24904c27e5a7d6a8db52 MD5 · raw file
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
- <title>BeltCal App - Two Pulleys - Step 2</title>
- <!-- Bootstrap -->
- <link href="css/bootstrap.min.css" rel="stylesheet">
- <link href="css/style.css" rel="stylesheet">
- <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
- <!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
- <!--[if lt IE 9]>
- <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
- <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
- <![endif]-->
- </head>
- <body class="blue">
- <header>
- <nav class="navbar navbar-default navbar-fixed-top">
- <div class="container-fluid">
- <!-- Brand and toggle get grouped for better mobile display -->
- <div class="navbar-header">
- <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
- <span class="sr-only">Toggle navigation</span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- <span class="icon-bar"></span>
- </button>
- <a class="navbar-brand" href="index.html">
- <img src="images/beltcalc-logo.png">
- </a>
- </div>
- <!-- Collect the nav links, forms, and other content for toggling -->
- <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
- <ul class="nav navbar-nav">
- <li class="active"><a href="twopulleys-01.html">Two Pulley Calculator<span class="sr-only">(current)</span></a></li>
- <li><a href="threepulleys-01.html">Three Pulley Calculator</a></li>
- </ul>
- </div><!-- /.navbar-collapse -->
- </div><!-- /.container-fluid -->
- </nav>
- </header>
- <div class="container center">
- <h5>Follow the steps to calculate the correct belt legth for two pulleys.</h5>
- </div>
- <div class="cream">
- <div class="container center">
- <h3 class="orange">STEP TWO</h3>
- <h5>Measure the distance between pulleys (center to center)</h5>
- <br>
- <img src="/images/2p-02.png" width="100%">
- <br>
- <br>
- <form>
- <div class="form-group">
- <input type="text" class="form-control" id="stepTwoInput" placeholder="Distance Between Pulleys">
- </div>
- </form>
- </div>
- </div>
- <footer class=" center navbar-fixed-bottom">
- <a href="/twopulleys-01.html" class="footer-btn btn btn-lg active" role="button">Previous</a>
- <a href="/twopulleys-03.html" class="footer-btn btn btn-lg active" role="button">Next</a>
- </footer>
- <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
- <!-- Include all compiled plugins (below), or include individual files as needed -->
- <script src="js/bootstrap.min.js"></script>
- </body>
- </html>