Advertisement
Guest User

index.html

a guest
Feb 23rd, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Median</title>
  5.     <script type="text/javascript" src="median_mean.js">
  6.             console.log(mean([12,451,5123421,2134]));
  7.     </script>
  8.     <link rel="stylesheet" href="style.css">
  9.     <link rel="stylesheet" href="bootstrap.css">
  10. </head>
  11. <body>
  12.  
  13.     <h1>Mean Calculator</h1>
  14.  
  15.     <hr>
  16.  
  17.     <div class="main">
  18.         <input type="text" class="form-control" id="input" placeholder="Input your numbers">
  19.  
  20.             <div class="button-div">
  21.                 <button class="btn btn-primary" onclick='show( "out", meanOut( "input" ) )'>Get Mean</button>
  22.                 <button class="btn btn-primary" onclick='show( "out", medianOut(  "input" ) )'>Get Median</button>
  23.             </div>
  24.  
  25.         <p id="out"></p>
  26.     </div>
  27.  
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement